aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* inline strcmp(s, "-") [actually macro-ize it for now - gcc is too stupid]Denis Vlasenko2006-12-161-0/+8
|
* build system: add "release" targetDenis Vlasenko2006-12-121-10/+11
| | | | find: support -size N (needed for above)
* passwd: made smaller by ~130 bytes. size can go negativeDenis Vlasenko2006-12-011-1/+1
| | | | if current trend will continue ;)
* fix support for globally disabling --long-options.Denis Vlasenko2006-11-291-1/+3
| | | | (disabling them saves ~4K on fully configured bbox)
* Provide our own isdigit macro. saves more than 400 bytes.Denis Vlasenko2006-11-271-1/+5
|
* safe_strtoXX interface proved to be a bit unconvenient.Denis Vlasenko2006-11-271-22/+11
| | | | | Remove it, introduce saner bb_strtoXX. Saved ~350 bytes.
* Closing bug 730. libbb run_parts is using scandir (a GNUism),Denis Vlasenko2006-11-261-1/+0
| | | | | and it is used only by run_parts applet, so move it there. Also saved ~30 bytes (prolly gcc autoinlining...).
* tee: fix bug: argv[-1] is a no-no!Denis Vlasenko2006-11-251-1/+1
| | | | | bb_full_fd_action: optimize die_if_ferror: "<applet>: filename" isn't a good err msg, add "..I/O error"
* small improvements in str -> num convertorsDenis Vlasenko2006-11-251-6/+0
|
* regularize str -> num convertorsDenis Vlasenko2006-11-251-34/+1
|
* tar: cache [ug]id->username/groupname mappings. Cuts down amountDenis Vlasenko2006-11-241-0/+1
| | | | | of open/read/close of /etc/passwd and /etc/group dramatically (we were rereading those for each untarred file!!!)
* glibc makedev() is a large inline. Save 700+ bytes by wrapping itDenis Vlasenko2006-11-241-0/+6
| | | | into a function.
* header_verbose_list: stop truncating file size in listingDenis Vlasenko2006-11-241-5/+6
|
* tar:Denis Vlasenko2006-11-241-1/+0
| | | | | | | | | * unpack: handle tar header fields which are not NUL terminated * pack: handle 4+GB files correctly * pack: refuse to store 101+ softlinks (was truncating link target name) * pack: mask mode with 07777
* introduce setsockopt_reuseaddr(int fd), setsockopt_broadcast(int fd),Denis Vlasenko2006-11-221-0/+2
| | | | | use them where appropriate. 200 bytes saved
* telnetd: move generic stuff into libbb. It will make it easyDenis Vlasenko2006-11-221-0/+12
| | | | to make other server applets IPv6-aware too.
* telnetd: we were having telnetd with is ONLY inetd or ONLY standalone.Denis Vlasenko2006-11-221-0/+1
| | | | | What if I need to have both?? This patch introduces CONFIG_FEATURE_TELNETD_STANDALONE: y - both, n - only inetd.
* bb_INET_default[] is really just a const "default",Denis Vlasenko2006-11-211-0/+2
| | | | nothing INET-specific
* insmod_ng_main: -80 bytes. Stopp mmapping, use xmalloc_open_read_close().Denis Vlasenko2006-11-211-2/+1
|
* svlogd: new applet. +9k. Still too big, but it was 12k yesterday.Denis Vlasenko2006-11-161-0/+2
|
* rename: compare_string_array -> index_in_str_arrayDenis Vlasenko2006-11-051-1/+2
| | | | | introduce index_in_substr_array and use it in iproute2
* smart_ulltoa5: make available in libbbDenis Vlasenko2006-11-051-0/+1
|
* replace /proc scanning code by more versatile one.Denis Vlasenko2006-11-051-12/+36
| | | | | | | Use it where appropriate. Stop scanning /etc/passwd *for every process*!!! (uid->username) top: reduce memory usage - we won't save unneeded fields from /proc info anymore. Downside: ~+250 bytes of code
* top: improve CPU% calculationDenis Vlasenko2006-11-051-2/+2
| | | | style fixes
* Unneeded code removed, usused field "unsigned pscpu" removedDenis Vlasenko2006-11-011-4/+3
|
* PID should be stored in pid_t, not int or long.Denis Vlasenko2006-11-011-4/+3
| | | | | find_pid_by_name() was returning 0 or -1 in last array element, but -1 was never checked. We can use just 0 intead.
* ls: cleanup part 1Denis Vlasenko2006-10-281-4/+4
|
* recursive_action: add depth paramDenis Vlasenko2006-10-271-4/+4
| | | | chmod: match coreutils versus following links
* reshuffle libbb.h contents so that order of decls makes senseDenis Vlasenko2006-10-271-268/+250
| | | | Found bad typo in largefile support :)
* Fix minor breakage in previous commitDenis Vlasenko2006-10-261-2/+2
|
* rename functions to more understandable namesDenis Vlasenko2006-10-261-15/+17
|
* remove bb_printf and the likeDenis Vlasenko2006-10-261-13/+4
|
* xconnect is non-conforming to "xfunc like libc" rule. FixingDenis Vlasenko2006-10-261-1/+3
|
* wget: wget $'-\207' ... should not be allowed to work. ever. :)Denis Vlasenko2006-10-251-1/+1
| | | | | So fix wget & getopt32. Also fix multiple --header options order: add and use rev_llist.
* cp: add support for -s, -l. Fix free(nonmalloc) bug.Denis Vlasenko2006-10-211-1/+4
| | | | | Add doc on POSIX's rules on -i and -f (insane!). ln: make "ln dangling_symlink new_link" work.
* build system: (try to) get rid of bb_config.h hackDenis Vlasenko2006-10-191-1/+1
|
* grep: add support for -rDenis Vlasenko2006-10-141-2/+2
|
* add open_read_close() and similar stuffDenis Vlasenko2006-10-141-8/+15
|
* bb_get_[chomped]line_from_file wasn't descriptive enough.Denis Vlasenko2006-10-121-2/+3
| | | | Renaming...
* ifupdown: stop emitting annoying/misleading error messages.Denis Vlasenko2006-10-111-0/+4
| | | | Patch by Gabriel Somlo <somlo at cmu.edu>
* od: provide full-blown od from coreutils if CONFIG_DESKTOPDenis Vlasenko2006-10-101-0/+2
|
* fixes from Vladimir Dronnikov <dronnikov@gmail.ru>Denis Vlasenko2006-10-101-3/+8
|
* start_stop_daemon: add -N <nice> compatDenis Vlasenko2006-10-081-0/+1
| | | | | [re]nice: add support for -nNNN w/o spaces, -NNN (nice only), simplified code
* correct largefile support, add comments about it.Denis Vlasenko2006-10-081-22/+48
|
* attempt to regularize atoi mess.Denis Vlasenko2006-10-081-23/+45
|
* dd: make it recognize not only 'k' but 'K' too;Denis Vlasenko2006-10-071-0/+25
| | | | make it (partially) CONFIG_LFS-aware
* dnsd fix; option_mask32 added. dnsd needs more love.Denis Vlasenko2006-10-061-1/+2
|
* httpd: add -u user[:grp] supportDenis Vlasenko2006-10-051-0/+7
|
* build system overhaulDenis Vlasenko2006-10-051-1/+0
|
* bb_applet_name -> applet_nameDenis Vlasenko2006-10-031-1/+1
|