00001 /* 00002 * This file is part of RTRlib. 00003 * 00004 * This file is subject to the terms and conditions of the MIT license. 00005 * See the file LICENSE in the top level directory for more details. 00006 * 00007 * Website: http://rtrlib.realmv6.org/ 00008 */ 00009 00010 #ifndef LRTR_ALLOC_UTILS_H 00011 #define LRTR_ALLOC_UTILS_H 00012 00013 #include <stdlib.h> 00014 00022 void lrtr_set_alloc_functions( 00023 void *(*malloc_function)(size_t size), 00024 void *(*realloc_function)(void *ptr, size_t size), 00025 void (*free_function)(void *ptr)); 00026 00027 #endif
1.6.1