2025-09-28 22:00:17 +00:00
|
|
|
/* $Id$ */
|
2025-09-29 00:10:20 +00:00
|
|
|
#include <Mw/Milsko.h>
|
2025-09-28 22:00:17 +00:00
|
|
|
|
2025-09-29 00:04:04 +00:00
|
|
|
void MwLLCreateCommon(MwLL handle) {
|
2025-09-28 22:21:51 +00:00
|
|
|
handle->handler = malloc(sizeof(*handle->handler));
|
|
|
|
|
memset(handle->handler, 0, sizeof(*handle->handler));
|
2025-09-28 22:00:17 +00:00
|
|
|
}
|
|
|
|
|
|
2025-09-29 00:04:04 +00:00
|
|
|
void MwLLDestroyCommon(MwLL handle) {
|
2025-09-28 22:21:51 +00:00
|
|
|
free(handle->handler);
|
2025-09-28 22:00:17 +00:00
|
|
|
}
|