Code Search for Developers
 
 
  

main.c from redshed at Krugle


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

redshed

Code for Mac+WebObjects.

Project homepage: http://sourceforge.net/projects/redshed
Programming language(s): C,Java,Objective C
License: other

  debugHexStr.xcodeproj/
    project.pbxproj
    wolf.mode1
    wolf.pbxuser
  debugHexStr.c
  debugHexStr.h
  main.c