kiba-engine
string.h
1 #pragma once
2 
3 #include <kiba/core/string.h>
4 #include <kiba/format/buffer.h>
5 #include <kiba/format/format.h>
6 
7 // TODO add functionality to read in strings. Open question: when to stop??
8 
9 b8 format_write_character_array(format_buffer *buf, format_options options, string_view view);
10 
11 FORMAT_FUNCTION(format_write_string_view);
12 FORMAT_FUNCTION(format_write_string);
13 FORMAT_FUNCTION(format_write_raw_string);
14 FORMAT_FUNCTION(format_write_char);
Custom library for interactions with strings using string views.
Non owning views on actual strings.
Definition: string.h:31