Show main.c syntax highlighted
#include <stdio.h>
#include "debugHexStr.h"
#include <stdint.h>
int main (int argc, const char * argv[]) {
uint16_t x = 0x0123;
uint32_t y = 0x456789AB;
printf("x:%s ", debugHexStrVar(x));
printf("y:%s\n", debugHexStrVar(y));
return 0;
}
See more files for this project here