/* wordsplit.c */
int sepsplit(byte *str, byte sep, byte **rec, uns max);
-int wordsplit(byte *, byte **, uns);
+int wordsplit(byte *str, byte **rec, uns max);
/* pat(i)match.c: Matching of shell patterns */
-int match_pattern(const char *, const char *);
-int match_pattern_nocase(const char *, const char *);
+int match_pattern(const char *patt, const char *str);
+int match_pattern_nocase(const char *patt, const char *str);
/* md5hex.c */
-void md5_to_hex(const byte *, byte *);
-void hex_to_md5(const byte *, byte *);
+void md5_to_hex(const byte *s, byte *d);
+void hex_to_md5(const byte *s, byte *d);
#define MD5_SIZE 16
#define MD5_HEX_SIZE 33
/* prime.c */
-int isprime(uns);
-uns nextprime(uns);
+int isprime(uns x);
+uns nextprime(uns x);
/* primetable.c */