diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-10-18 19:02:07 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-10-18 19:02:07 -0400 |
| commit | 5bdf96234a388cbd3854747b0667620ebb60ccdf (patch) | |
| tree | e4ab4055e0190f4a080b69fcd933cd8ca6146260 /man/man3/tomo-CString.as_text.3 | |
| parent | 82e3c05d547b2372ca4033c68469479260092b5a (diff) | |
Improved CLI parsing and add CString.join()
Diffstat (limited to 'man/man3/tomo-CString.as_text.3')
| -rw-r--r-- | man/man3/tomo-CString.as_text.3 | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/man/man3/tomo-CString.as_text.3 b/man/man3/tomo-CString.as_text.3 new file mode 100644 index 00000000..463a6f98 --- /dev/null +++ b/man/man3/tomo-CString.as_text.3 @@ -0,0 +1,33 @@ +'\" t +.\" Copyright (c) 2025 Bruce Hill +.\" All rights reserved. +.\" +.TH CString.as_text 3 2025-10-18 "Tomo man-pages" +.SH NAME +CString.as_text \- convert a C string to Text +.SH LIBRARY +Tomo Standard Library +.SH SYNOPSIS +.nf +.BI CString.as_text\ :\ func(str:\ CString\ ->\ Text) +.fi +.SH DESCRIPTION +Convert a C string to Text. + + +.SH ARGUMENTS + +.TS +allbox; +lb lb lbx lb +l l l l. +Name Type Description Default +str CString The C string. - +.TE +.SH RETURN +The C string as a Text. + +.SH EXAMPLES +.EX +assert CString("Hello").as_text() == "Hello" +.EE |
