MCPcopy Create free account
hub / github.com/IoLanguage/io / UArray_fromFormat_

Function UArray_fromFormat_

libs/basekit/source/UArray_format.c:27–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25}
26
27UArray *UArray_fromFormat_(UArray *self, const char *format, ...) {
28 va_list ap;
29 va_start(ap, format);
30 UArray_fromVargs_(self, format, ap);
31 va_end(ap);
32 return self;
33}
34
35void UArray_fromVargs_(UArray *self, const char *format, va_list ap) {
36 while (*format) {

Callers

nothing calls this directly

Calls 1

UArray_fromVargs_Function · 0.85

Tested by

no test coverage detected