mirror of
https://github.com/reactos/RosBE.git
synced 2024-11-27 21:30:34 +00:00
d3bc89592f
- This removes the dependency on test from Config.cmd and Build.cmd. - Some other miscellaneous cleanup. svn path=/trunk/tools/RosBE-Windows/; revision=442
18 lines
444 B
C
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;
|
|
}
|