17 lines
167 B
C
17 lines
167 B
C
#include <stdio.h>
|
|
|
|
#ifndef HEX_READ_SCANF_H
|
|
#define HEX_READ_SCANF_H
|
|
|
|
extern void hex_scan();
|
|
|
|
#endif // HEX_READ_SCANF_H
|
|
|
|
int main()
|
|
{
|
|
|
|
hex_scan();
|
|
|
|
return 0;
|
|
}
|