1 2 3 4 5 6 7 8 9 10 11
#ifndef TSL_STRING_VIEW_H #define TSL_STRING_VIEW_H #include <stddef.h> typedef struct { const char *data; size_t size; } TslStringView; #endif /* TSL_STRING_VIEW_H */