aboutsummaryrefslogtreecommitdiff
path: root/include/std/string_view.h
blob: 4f9552a1ac44033118b2140c0d94bfb6f407dad9 (plain)
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 */