MCPcopy Create free account
hub / github.com/boostorg/build / string_set_init

Function string_set_init

v2/engine/object.c:156–162  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

154
155
156static void string_set_init( string_set * set )
157{
158 set->size = 0;
159 set->num = 4;
160 set->data = (struct hash_item * *)BJAM_MALLOC( set->num * sizeof( struct hash_item * ) );
161 memset( set->data, 0, set->num * sizeof( struct hash_item * ) );
162}
163
164
165static void string_set_done( string_set * set )

Callers 1

object_new_rangeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected