diff options
author | Max Kellermann <max@duempel.org> | 2008-12-28 19:54:49 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-28 19:54:49 +0100 |
commit | 859aac7242fe3767c19c1bfff73d5e6159cbad31 (patch) | |
tree | 2e433f6ec1a820d99ad171ffd6a49a6828ddd0e4 /src/utils.h | |
parent | 2598cdd86814c7792a431470a9143d609399697b (diff) | |
download | mpd-859aac7242fe3767c19c1bfff73d5e6159cbad31.tar.gz mpd-859aac7242fe3767c19c1bfff73d5e6159cbad31.tar.xz mpd-859aac7242fe3767c19c1bfff73d5e6159cbad31.zip |
utils: removed myFgets()
Replaced myFgets() with fgets() + g_strchomp().
Diffstat (limited to 'src/utils.h')
-rw-r--r-- | src/utils.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/utils.h b/src/utils.h index e7594c261..9701b9d4c 100644 --- a/src/utils.h +++ b/src/utils.h @@ -37,8 +37,6 @@ } while (0) #endif /* !assert_static */ -char *myFgets(char *buffer, int bufferSize, FILE * fp); - void stripReturnChar(char *string); void my_usleep(long usec); |