aboutsummaryrefslogtreecommitdiff
path: root/include/duser.h
diff options
context:
space:
mode:
authorAlan Brault <alan.brault@incruentatus.net>2011-05-03 09:50:15 -0400
committerAlan Brault <alan.brault@incruentatus.net>2011-05-03 09:50:15 -0400
commit4957bf13b26a403271c9838a9b74b9f61682fa8e (patch)
tree942d28cad437dd20bf29cb60ad58ad4949b87c96 /include/duser.h
parentb608b55786a8cecf626d7c489496ac402098b198 (diff)
downloadduser-4957bf13b26a403271c9838a9b74b9f61682fa8e.tar.gz
Remove config.h from strchrnul.c; not needed
Fix numerous shadow declaration bugs that could cause problems for Solaris libc Fix bad prototype using in unlink()
Diffstat (limited to 'include/duser.h')
-rw-r--r--include/duser.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/duser.h b/include/duser.h
index e955252..345bf49 100644
--- a/include/duser.h
+++ b/include/duser.h
@@ -58,11 +58,11 @@ typedef struct record_t
int pad3;
} record_t;
-void usage();
+void usage(void);
int strval(const char* str);
int strfind(const char* str1, const char* str2);
-int logcleanup();
-int COM(const char* func, char *format, ...);
+int logcleanup(void);
+int COM(const char* func, const char *format, ...);
record_t* find_in_file(const char* filename, const char* needle);
int get_file_count(const char* path);
char** get_file_list(const char* path, int count);
@@ -77,4 +77,5 @@ int user_cmd(const int argc, char* argv[]);
int user_choice(char c);
int user_add(const char* filename, const char* needle);
int user_new_list(const char* fname);
+int check_cmd_string(char** args, const char* str2, int count);
#endif