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

Function UArray_newWithFormat_

libs/basekit/source/UArray_format.c:12–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10#include <stddef.h>
11
12UArray *UArray_newWithFormat_(const char *format, ...) {
13 UArray *self;
14 va_list ap;
15 va_start(ap, format);
16 self = UArray_newWithVargs_(format, ap);
17 va_end(ap);
18 return self;
19}
20
21UArray *UArray_newWithVargs_(const char *format, va_list ap) {
22 UArray *self = UArray_new();

Calls 1

UArray_newWithVargs_Function · 0.85

Tested by

no test coverage detected