mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-05 21:31:36 +00:00
13 lines
334 B
C
13 lines
334 B
C
#include "pal.h"
|
|
#include "pal_debug.h"
|
|
#include "api.h"
|
|
#include "hex.h"
|
|
|
|
int main() {
|
|
char x[] = {0xde, 0xad, 0xbe, 0xef};
|
|
char y[] = {0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd, 0xcd};
|
|
pal_printf("Hex test 1 is %s\n", ALLOCA_BYTES2HEXSTR(x));
|
|
pal_printf("Hex test 2 is %s\n", ALLOCA_BYTES2HEXSTR(y));
|
|
return 0;
|
|
}
|