mirror of
https://github.com/MaJerle/lwmem.git
synced 2025-01-13 21:42:53 +08:00
15 lines
259 B
C
15 lines
259 B
C
#include <stdio.h>
|
|
#include "lwmem/lwmem.h"
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
|
|
extern void lwmem_test_run(void);
|
|
extern void lwmem_test_memory_structure(void);
|
|
|
|
int
|
|
main(void) {
|
|
lwmem_test_memory_structure();
|
|
//lwmem_test_run();
|
|
return 0;
|
|
}
|