NDSummary.OnToolTipsLoaded("File:string.h",{676:"
inline bool Char_IsNum(
c8 chr
)
Check if a given character is numeric (0-9)
",677:"
inline bool Char_IsAlpha(
c8 chr
)
Check if a given character is alphabetic (A-Za-z)
",678:"
inline bool Char_IsAlphaNum(
c8 chr
)
Check if a given character is alphanumeric (alphabet letter and numbers)
",680:"
inline u8 String_Length(
const c8* str
)
Get the length of a given string
",681:"
inline void String_Copy(
c8* dst,
const c8* src
)
Copy a source string to a destination buffer
",682:"
void String_FromUInt8ZT(
u8 value,
c8* string
)
Create a zero-terminated string from a 8-bits unsigned integer String buffer must be at least 4 bytes length (will be padded with \'0\')
",683:"
void String_FromUInt8(
u8 value,
c8* string
)
Create a string from a 8-bits unsigned integer (string is not zero-terminated) String buffer must be at least 3 bytes length (will be padded with \'0\') Original version derived from Galandros work (https://​wikiti​.brandonw​.net​/index​.php​?title=Z80_Routines:Other:DispA)
",684:"
void String_FromUInt16ZT(
u16 value,
c8* string
)
Create a zero-terminated string from a 16-bits unsigned integer String buffer must be at least 6 bytes length (will be padded with \'0\')
",685:"
void String_FromUInt16(
u16 value,
c8* string
)
Create a string from a 16-bits unsigned integer (string is not zero-terminated) String buffer must be at least 5 bytes length (will be padded with \'0\') Original version by Milos "baze" Bazelides (http://​map​.grauw​.nl​/sources​/external​/z80bits​.html​#5​.1)
",686:"
void String_Format(
c8* dest,
const c8* format,
...
)
Build a zero-terminated string
"});