diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-04-23 22:40:26 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-06-09 13:49:38 -0400 |
commit | 31f7bf1994523f5b8fd014c69b97e09d7043d9ff (patch) | |
tree | e511987f3b7b94df5743d7cf32d06f60de86c3fa /src/shared/utf8.h | |
parent | 4e09014daf8f98584b3f15e64e93bed232e70a6b (diff) |
logs-show: print multiline messages
[ 0.019862] fedora kernel: CPU0: Thermal monitoring enabled (TM1)
[ 0.019900] fedora kernel: Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift: 5
[ 0.020118] fedora kernel: Freeing SMP alternatives: 24k freed
Diffstat (limited to 'src/shared/utf8.h')
-rw-r--r-- | src/shared/utf8.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shared/utf8.h b/src/shared/utf8.h index 794ae15ab9..f805ea6b59 100644 --- a/src/shared/utf8.h +++ b/src/shared/utf8.h @@ -21,12 +21,14 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ +#include <stdbool.h> + #include "macro.h" char *utf8_is_valid(const char *s) _pure_; char *ascii_is_valid(const char *s) _pure_; -char *utf8_is_printable_n(const char* str, size_t length) _pure_; +bool utf8_is_printable(const char* str, size_t length) _pure_; char *utf8_filter(const char *s); char *ascii_filter(const char *s); |