aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-08 23:36:17 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-08 23:36:17 +0000
commitfe139de123d5bd9e7d7a096a72b52d8d7c2220ad (patch)
tree8763d9f89197adda0ef45ac57418743766345fe4 /include/libbb.h
parent8923a8c94c288f5dba133a439f35666b5de2aac4 (diff)
downloadbusybox-w32-fe139de123d5bd9e7d7a096a72b52d8d7c2220ad.tar.gz
busybox-w32-fe139de123d5bd9e7d7a096a72b52d8d7c2220ad.tar.bz2
busybox-w32-fe139de123d5bd9e7d7a096a72b52d8d7c2220ad.zip
start_stop_daemon: add -N <nice> compat
[re]nice: add support for -nNNN w/o spaces, -NNN (nice only), simplified code git-svn-id: svn://busybox.net/trunk/busybox@16344 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index bc86e5faf..7b9b83908 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -346,6 +346,7 @@ long xatol_sfx(const char *numstr, const struct suffix_mult *suffixes);
346long xatol(const char *numstr); 346long xatol(const char *numstr);
347/* Specialized: */ 347/* Specialized: */
348unsigned xatou(const char *numstr); 348unsigned xatou(const char *numstr);
349int xatoi_range(const char *numstr, int lower, int upper);
349int xatoi(const char *numstr); 350int xatoi(const char *numstr);
350/* Using xatoi() instead of naive atoi() is not always convenient - 351/* Using xatoi() instead of naive atoi() is not always convenient -
351 * in many places people want *non-negative* values, but store them 352 * in many places people want *non-negative* values, but store them