MCPcopy Create free account
hub / github.com/numpy/numpy / _append_str

Function _append_str

numpy/core/src/multiarray/buffer.c:82–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82static int
83_append_str(_tmp_string_t *s, char const *p)
84{
85 for (; *p != '\0'; p++) {
86 if (_append_char(s, *p) < 0) {
87 return -1;
88 }
89 }
90 return 0;
91}
92
93/*
94 * Append a PEP3118-formatted field name, ":name:", to str

Callers 1

_buffer_format_stringFunction · 0.85

Calls 1

_append_charFunction · 0.85

Tested by

no test coverage detected