FWriteFmtLn
FWriteFmtLn Description Write formatted output to a file stream followed by a newline character. This macro internally uses StrWriteFmtInternal to format the string and then writes it to the stream followed by a newline.
Read MoreLOG_SYS_ERROR
LOG_SYS_ERROR Description Writes an error-level log message with errno explanation appended at the end of final string.
Read MoreLOG_SYS_FATAL
LOG_SYS_FATAL Description Writes a fatal log message and aborts the program, with errno explanation appended at the end of final string.
Read MoreLOG_SYS_INFO
LOG_SYS_INFO Description Writes an informational log message along with errno explanation appended at then end of final string.
Read MoreStrReadFmt
StrReadFmt Description Parse input string according to format string with rust-style placeholders, extracting values into provided arguments. This is a macro wrapper around StrReadFmtInternal.
Read MoreWriteFmtLn
WriteFmtLn Description Write formatted output to the standard output stream (stdout) followed by a newline. This is a convenience macro calling FWriteFmtLn with stdout.
Read More