Download this file
1 2 3 4 5 6 7 8 9 10 11 12
#include <stdio.h> #include "core.hpp" int main(int argc, char *argv[]) { //printf("stats = %d\n",sizeof(STATS)); //printf("xstats = %d\n",sizeof(XSTATS)); printf("world = %d\n",sizeof(WORLD)); //printf("xworld = %d\n",sizeof(XWORLD)); printf("int = %d\n",sizeof(int)); printf("long = %d\n",sizeof(long)); }