RosBE/RosBE-Windows/Tools/echoh.c
Peter Ward d3bc89592f - Added a small utility (chknewer) to check if one file is newer than another.
- This removes the dependency on test from Config.cmd and Build.cmd.
- Some other miscellaneous cleanup.

svn path=/trunk/tools/RosBE-Windows/; revision=442
2007-10-24 07:04:52 +00:00

18 lines
444 B
C

/*
* PROJECT: RosBE - ReactOS Build Environment for Windows.
* LICENSE: GPL - See LICENSE.txt in the top level directory.
* FILE: Tools/echoh.c
* PURPOSE: Converts a value to hex and displays it
* COPYRIGHT: Copyright 2007 Christoph von Wittich <Christoph_vW@reactos.org>
*
*/
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char** argv) {
if (argc == 2)
printf("%x", atoi(argv[1]));
return 0;
}