Changeset 3232 in MondoRescue for branches/3.2/mindi-busybox/coreutils/fold.c


Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/coreutils/fold.c

    r2725 r3232  
    1010   Licensed under GPLv2 or later, see file LICENSE in this source tree.
    1111*/
     12
     13//usage:#define fold_trivial_usage
     14//usage:       "[-bs] [-w WIDTH] [FILE]..."
     15//usage:#define fold_full_usage "\n\n"
     16//usage:       "Wrap input lines in each FILE (or stdin), writing to stdout\n"
     17//usage:     "\n    -b  Count bytes rather than columns"
     18//usage:     "\n    -s  Break at spaces"
     19//usage:     "\n    -w  Use WIDTH columns instead of 80"
     20
    1221#include "libbb.h"
    1322#include "unicode.h"
Note: See TracChangeset for help on using the changeset viewer.