aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/utils.h
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-28 00:25:17 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-28 00:25:17 +0100
commit0a7ac3f4acb9d3de00eb2160279ecf5a5041e133 (patch)
tree4039f94fec95293f0e7cd4cc9c79bc646ffcd10e /FICS/utils.h
parentdb5d6e6cc75e8124b85fc991c52c9419ccb0f0b4 (diff)
Moved comments and added argument lists
Diffstat (limited to 'FICS/utils.h')
-rw-r--r--FICS/utils.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/FICS/utils.h b/FICS/utils.h
index 179385e..ff7110b 100644
--- a/FICS/utils.h
+++ b/FICS/utils.h
@@ -50,14 +50,10 @@
extern int count_lines(FILE *);
extern int iswhitespace( );
extern char *getword( );
-/* Returns a pointer to the first whitespace in the argument */
-extern char *eatword( );
-/* Returns a pointer to the first non-whitespace char in the argument */
-extern char *eatwhite( );
-/* Returns a pointer to the same string with trailing spaces removed */
-extern char *eattailwhite( );
-/* Returns the next word in a given string >eatwhite(eatword(foo))< */
-extern char *nextword( );
+extern char *eatword(char *);
+extern char *eatwhite(char *);
+extern char *eattailwhite(char *);
+extern char *nextword(char *);
extern int mail_string_to_address();
extern int mail_string_to_user();