ncloader  0.1
 모두 데이타 구조 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 매크로 그룹들 페이지들
allocator.h
이 파일의 문서화 페이지로 가기
1 
9 struct allocator;
10 
20 extern struct allocator *allocator_init(unsigned int base, unsigned int size);
21 
29 extern int allocator_fini(struct allocator *handle);
30 
40 extern void *allocator_alloc(struct allocator *handle, int size);
41 
50 extern void allocator_free(struct allocator *handle, void *ptr);
51 
59 extern int allocator_chunk_size(void *ptr);
60