summaryrefslogtreecommitdiff
path: root/apps/misc.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2003-05-04 02:04:31 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2003-05-04 02:04:31 +0000
commit75b41a88f6bfdc478d16d0f3ad9341a6fac459d8 (patch)
treeb3f1b4f5831be936a47ab970f5c3f532650ad2fa /apps/misc.h
parent93e47b922f38b2ab7a6b485361943b8566e56629 (diff)
downloadrockbox-75b41a88f6bfdc478d16d0f3ad9341a6fac459d8.tar.gz
rockbox-75b41a88f6bfdc478d16d0f3ad9341a6fac459d8.zip
Moved read_line() to misc.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3647 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/misc.h')
-rw-r--r--apps/misc.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/misc.h b/apps/misc.h
index b5cf896b28..c8aa266d5f 100644
--- a/apps/misc.h
+++ b/apps/misc.h
@@ -22,3 +22,11 @@
22 Make sure to have space for 6 bytes in the buffer. 5 letters plus the 22 Make sure to have space for 6 bytes in the buffer. 5 letters plus the
23 terminating zero byte. */ 23 terminating zero byte. */
24char *num2max5(unsigned int bytes, char *max5); 24char *num2max5(unsigned int bytes, char *max5);
25
26/* Read (up to) a line of text from fd into buffer and return number of bytes
27 * read (which may be larger than the number of bytes stored in buffer). If
28 * an error occurs, -1 is returned (and buffer contains whatever could be
29 * read). A line is terminated by a LF char. Neither LF nor CR chars are
30 * stored in buffer.
31 */
32int read_line(int fd, char* buffer, int buffer_size);