/usr/include/bglibs/fmt/misc.h is in libbg1-dev 1.106-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | #ifndef FMT__MISC__H__
#define FMT__MISC__H__
#include <stdarg.h>
struct str;
/** \addtogroup fmt
@{ */
/** \name Miscelaneous formatting
@{ */
extern unsigned fmt_char(char* buffer, int ch, unsigned width, char pad);
extern unsigned fmt_mem(char* buffer, const char* s, unsigned length,
unsigned width, char pad);
extern unsigned fmt_chars(char* buffer, const char* s,
unsigned width, char pad);
extern unsigned fmt_str(char* buffer, const struct str* s,
unsigned width, char pad);
/** @} */
/** @} */
#endif
|