BlinkenArea - GitList
Repositories
Blog
Wiki
BlinkenLib
Code
Commits
Branches
Tags
Search
Tree:
481e57e
Branches
Tags
master
v0.1
v0.2
v0.3
v0.3.1
v0.4
v0.4.1
v0.5
v0.5.1
v0.5.2
v0.5.3
v0.5.4
v0.5.5
v0.6.0
v0.6.1
v0.6.2
v0.6.3
v0.6.4
v0.6.5
v0.6.6
v0.6.7
v0.6.8
v0.6.9
v0.7.0
v0.7.1
v0.7.10
v0.7.2
v0.7.3
v0.7.4
v0.7.5
v0.7.6
v0.7.7
v0.7.8
v0.7.9
v0.8.0
v0.8.1
BlinkenLib
config
mng.c
add missing stdio.h
Stefan Schuermans
commited
481e57e
at 2016-12-18 14:12:59
mng.c
Blame
History
Raw
#include <stdio.h> #include <libmng.h> mng_ptr my_mng_alloc(mng_size_t iSize) { void *ptr = malloc(iSize); memset(ptr, 0, iSize); return (mng_ptr) ptr; } void my_mng_free(mng_ptr pPtr, mng_size_t __attribute__ ((unused)) iSize) { free(pPtr); } int main() { mng_handle hMNG = mng_initialize(MNG_NULL, my_mng_alloc, my_mng_free, MNG_NULL); mng_cleanup(&hMNG); return 0; }