1 2 3 4 5 6 7 8 9 10
#ifndef _DWXINFO_MODULES_MEMORY_H_ #define _DWXINFO_MODULES_MEMORY_H_ struct memory * memory_new(); void memory_free(struct memory *); void memory_update(struct memory *); const char * memory_get_val(struct memory *); #endif