code / tomo

Lines41.3K C23.7K Markdown9.7K YAML5.0K Tomo2.3K
7 others 763
Python231 Shell230 make212 INI47 Text21 SVG16 Lua6
(35 lines)
1 '\" t
2 .\" Copyright (c) 2025 Bruce Hill
3 .\" All rights reserved.
4 .\"
5 .TH Text.as_c_string 3 2025-11-29 "Tomo man-pages"
6 .SH NAME
7 Text.as_c_string \- convert to C-style string
8 .SH LIBRARY
9 Tomo Standard Library
10 .SH SYNOPSIS
11 .nf
12 .BI Text.as_c_string\ :\ func(text:\ Text\ ->\ CString)
13 .fi
14 .SH DESCRIPTION
15 Converts a `Text` value to a C-style string.
18 .SH ARGUMENTS
20 .TS
21 allbox;
22 lb lb lbx
23 l l l.
24 Name Type Description
25 text Text The text to be converted to a C-style string.
26 .TE
27 .SH RETURN
28 A C-style string (`CString`) representing the text.
30 .SH EXAMPLES
31 .EX
32 assert "Hello".as_c_string() == CString("Hello")
33 .EE
34 .SH SEE ALSO
35 .BR Tomo-Text (3)