aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 0c3734cdb..171214586 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -680,7 +680,10 @@ enum { PRINTABLE_META = 0x100 };
680void fputc_printable(int ch, FILE *file) FAST_FUNC; 680void fputc_printable(int ch, FILE *file) FAST_FUNC;
681/* Return a string that is the printable representation of character ch. 681/* Return a string that is the printable representation of character ch.
682 * Buffer must hold at least four characters. */ 682 * Buffer must hold at least four characters. */
683enum { VISIBLE_SHOW_TABS = 1, VISIBLE_ENDLINE = 2 }; 683enum {
684 VISIBLE_ENDLINE = 1 << 0,
685 VISIBLE_SHOW_TABS = 1 << 1,
686};
684void visible(unsigned ch, char *buf, int flags) FAST_FUNC; 687void visible(unsigned ch, char *buf, int flags) FAST_FUNC;
685 688
686/* dmalloc will redefine these to it's own implementation. It is safe 689/* dmalloc will redefine these to it's own implementation. It is safe