MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / StringBuilder_init

Function StringBuilder_init

Tools/ToolsBootstrap.c:349–357  ·  view source on GitHub ↗

StringBuilder utilities

Source from the content-addressed store, hash-verified

347int FileSystem_createDirectory(const char* path);
348TimePoint FileSystem_getModificationTime(const char* path);
349int FileSystem_exists(const char* path);
350int FileSystem_isDirectory(const char* path);
351FILE* FileSystem_open(const char* path, const char* mode);
352char* FileSystem_canonicalizePath(const char* path);
353
354// String/vector utilities
355void StringVector_init(StringVector* sv, size_t initial_capacity);
356void StringVector_destroy(StringVector* sv);
357void StringVector_add(StringVector* sv, const char* str);
358char* StringVector_join(const StringVector* sv, const char* sep);
359int StringVector_contains(const StringVector* sv, const char* str);
360int StringVector_containsPath(const StringVector* sv, const char* str);

Callers 4

CommandLine_argQuotedFunction · 0.85
needsRebuildToolObjFunction · 0.85
linkWindowsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected