Files: 355f201e18dd1faee156f87a7aa389399a2af267 / tests / c / readMem.c
179 bytesRaw
1 | extern int readMem(const char*); |
2 | extern void equals(int, int); |
3 | |
4 | int onCreation(int msgRef) |
5 | { |
6 | const char * s = "\x61\x73\x6d\x01"; |
7 | int val = readMem(s); |
8 | equals(val, 0x61); |
9 | } |
10 |
Built with git-ssb-web