fork download
  1. #ifndef CONFIG_H
  2. #define CONFIG_H
  3.  
  4. #include <stdint.h>
  5.  
  6. static char xtea_key[17];
  7. static const int XTEA_KEY_SIZE = 16; /* max bytes */
  8. static const int KEY_SIZE = 16; /* real size */
  9. static const int XTEA_KEY_RANGE = 58; /* ASCII letters*/
  10. static uint32_t XTEA_KEY_HASH; /* key hash */
  11.  
  12. #endif
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
/usr/lib/gcc/i586-linux-gnu/5/../../../i386-linux-gnu/crt1.o: In function `_start':
(.text+0x18): undefined reference to `main'
collect2: error: ld returned 1 exit status
stdout
Standard output is empty