From 6769f8eb580aa2ecac4009fcde4a113e0476de74 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Thu, 24 Dec 2015 12:18:10 -0600 Subject: Move get_line() header to pending.h because posix has FILE * versions. --- lib/lib.h | 2 -- lib/pending.h | 6 ++++++ 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/lib.h b/lib/lib.h index b0d7f360..19992b98 100644 --- a/lib/lib.h +++ b/lib/lib.h @@ -180,8 +180,6 @@ off_t fdlength(int fd); void loopfiles_rw(char **argv, int flags, int permissions, int failok, void (*function)(int fd, char *name)); void loopfiles(char **argv, void (*function)(int fd, char *name)); -char *get_rawline(int fd, long *plen, char end); -char *get_line(int fd); void xsendfile(int in, int out); int wfchmodat(int rc, char *name, mode_t mode); int copy_tempfile(int fdin, char *name, char **tempname); diff --git a/lib/pending.h b/lib/pending.h index ffbd0256..fbcc47c8 100644 --- a/lib/pending.h +++ b/lib/pending.h @@ -5,4 +5,10 @@ int read_password(char * buff, int buflen, char* mesg); int update_password(char *filename, char* username, char* encrypted); +// lib.c +// These should be switched to posix-2008 getline() and getdelim() +char *get_rawline(int fd, long *plen, char end); +char *get_line(int fd); + + // TODO this goes away when lib/password.c cleaned up -- cgit v1.2.3