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
analyze.h
text_t
a range of text
Definition:
text.h:14
text_t::STA_FIELD_SIZE
STA_FIELD_SIZE(length) char *text
text data
text_t::length
size_t length
the number of characters in the text
Definition:
text.h:19
text_view_t
a non-owning view of text
Definition:
text.h:24
text_view_t::length
size_t length
the number of characters in the text
Definition:
text.h:30
text_view_t::STA_FIELD_SIZE
STA_FIELD_SIZE(length) const char *text
the text itself
common
core
include
core
text.h
Generated by
1.9.1