summaryrefslogtreecommitdiff
blob: f74dcc8a1527f215187f1e29e07677a82aa6f446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _ZoO_TOOL_STRINGS_TYPES_H_
#define _ZoO_TOOL_STRINGS_TYPES_H_

#include <stdio.h>

#include "../pervasive.h"

struct ZoO_strings
{
   ZoO_index words_count;
   ZoO_char * restrict * restrict words;
   size_t * restrict word_sizes;
};

#endif