MCPcopy Create free account
hub / github.com/GJDuck/e9patch / e9write_str

Function e9write_str

src/e9patch/e9loader.cpp:42–47  ·  view source on GitHub ↗

* Low-level string formatting routines. */

Source from the content-addressed store, hash-verified

40 * Low-level string formatting routines.
41 */
42static char *e9write_str(char *str, const char *s)
43{
44 while (*s != '\0')
45 *str++ = *s++;
46 return str;
47}
48static char *e9write_char(char *str, char c)
49{
50 *str++ = c;

Callers 5

e9error_implFunction · 0.85
e9debug_implFunction · 0.85
e9write_formatFunction · 0.85
e9panicFunction · 0.85
e9debugFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected