Improved ff/rw max step calculation (patch #882931 by Craigh Sather)
[kugel-rb.git] / apps / misc.h
blobc8aa266d5f8845019263390aad25e76920887c6e
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Daniel Stenberg
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
20 /* The point of this function would be to return a string of the input data,
21 but never longer than 5 columns. Add suffix k and M when suitable...
22 Make sure to have space for 6 bytes in the buffer. 5 letters plus the
23 terminating zero byte. */
24 char *num2max5(unsigned int bytes, char *max5);
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.
32 int read_line(int fd, char* buffer, int buffer_size);