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.
|
#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);
|
|
}
|
|
|