Cthulhu  0.2.10
Cthulhu compiler collection
text.h File Reference
#include "core/analyze.h"
#include <stddef.h>
Include dependency graph for text.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  text_t
 a range of text More...
 
struct  text_view_t
 a non-owning view of text More...
 

Macros

#define CT_TEXT_VIEW(str)   { .text = (str), .length = sizeof(str) - 1 }
 create a text view from a string literal More...
 

Macro Definition Documentation

◆ CT_TEXT_VIEW

#define CT_TEXT_VIEW (   str)    { .text = (str), .length = sizeof(str) - 1 }

create a text view from a string literal

Parameters
textthe string literal to create a view of
Note
this does not include the null terminator
Warning
this does not work with string variables

Definition at line 39 of file text.h.