You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
279 B
19 lines
279 B
1 year ago
|
#include "linemap.h"
|
||
|
#include "linearray.h"
|
||
|
|
||
|
LineMap LineMapNew()
|
||
|
{
|
||
|
LineMap result = NewMap(CNTKIT_KEY_STRING,
|
||
|
CNTKIT_CAPACITY, 8,
|
||
|
CNTKIT_VALUESIZE, 4,
|
||
|
TAG_DONE);
|
||
|
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
VOID LineMapFree(LineMap map)
|
||
|
{
|
||
|
// doesnt seem to delete contents
|
||
|
DeleteMap(map);
|
||
|
}
|