diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2012-03-29 13:56:11 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2012-03-29 13:56:11 -0400 |
commit | 7be23c2dc2203207eec1c846ac011e9790b8de71 (patch) | |
tree | 28d52b346e329a89724b72b9d1d076a3c23b8d1e | |
parent | 9d8e9686121dc92dd83728c0c33f37ab641f7b62 (diff) | |
download | duser-7be23c2dc2203207eec1c846ac011e9790b8de71.tar.gz |
Added prototype for __basename
-rw-r--r-- | include/duser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/duser.h b/include/duser.h index ac915c8..fa4b8b2 100644 --- a/include/duser.h +++ b/include/duser.h @@ -65,6 +65,7 @@ typedef struct record_t } record_t; void usage(void); +char *__basename(char *path); int strval(const char* str); int strfind(const char* str1, const char* str2); int touch(const char* filename, mode_t mode); |