diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index e97efcb6e..a2c699b54 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1271,6 +1271,16 @@ int bunzip2_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | |||
1271 | void bb_displayroutes(int noresolve, int netstatfmt) FAST_FUNC; | 1271 | void bb_displayroutes(int noresolve, int netstatfmt) FAST_FUNC; |
1272 | #endif | 1272 | #endif |
1273 | 1273 | ||
1274 | struct number_state { | ||
1275 | unsigned width; | ||
1276 | unsigned start; | ||
1277 | unsigned inc; | ||
1278 | const char *sep; | ||
1279 | const char *empty_str; | ||
1280 | smallint all, nonempty; | ||
1281 | }; | ||
1282 | void print_numbered_lines(struct number_state *ns, const char *filename) FAST_FUNC; | ||
1283 | |||
1274 | 1284 | ||
1275 | /* Networking */ | 1285 | /* Networking */ |
1276 | /* This structure defines protocol families and their handlers. */ | 1286 | /* This structure defines protocol families and their handlers. */ |