Cthulhu  0.2.10
Cthulhu compiler collection
text.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include "core/analyze.h"
6 
7 #include <stddef.h>
8 
11 
13 typedef struct text_t
14 {
16  STA_FIELD_SIZE(length) char *text;
19  size_t length;
20 } text_t;
21 
23 typedef struct text_view_t
24 {
26  STA_FIELD_SIZE(length) const char *text;
27 
30  size_t length;
31 } text_view_t;
32 
39 #define CT_TEXT_VIEW(str) { .text = (str), .length = sizeof(str) - 1 }
40 
a range of text
Definition: text.h:14
STA_FIELD_SIZE(length) char *text
text data
size_t length
the number of characters in the text
Definition: text.h:19
a non-owning view of text
Definition: text.h:24
size_t length
the number of characters in the text
Definition: text.h:30
STA_FIELD_SIZE(length) const char *text
the text itself