summaryrefslogtreecommitdiff
path: root/test/memory_test.c
blob: 8966a4fcb1cd8b23e51940834f4ea6e6f748bf08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

#include <cetris.h>

int main(void) {
  cetris_game game;

  init_game(&game, NULL);

  printf("memory usage of game instance: %li\n", sizeof(game));

  return 0;
}