mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2026-01-01 15:10:50 +00:00
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@39 b9cfdab3-6d41-4d17-bbe4-086880011989
12 lines
247 B
C
12 lines
247 B
C
/* $Id$ */
|
|
#include <Mw/Milsko.h>
|
|
|
|
void MwLLCreateCommon(MwLL handle) {
|
|
handle->handler = malloc(sizeof(*handle->handler));
|
|
memset(handle->handler, 0, sizeof(*handle->handler));
|
|
}
|
|
|
|
void MwLLDestroyCommon(MwLL handle) {
|
|
free(handle->handler);
|
|
}
|