blob: d879450f9fe4113c7ed3bd6870b2f0cd372b109e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef BASE_STRING_H
#define BASE_STRING_H
// let's use this for strings
// to better differentiate between stuff
typedef u8 s8;
typedef struct string string ;
struct string
{
s8 *data;
umm size;
};
// TODO(nasr): helper functions for string
#endif /* BASE_STRING_H */
|