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

#include "../lib/cetris.h"

int
main(void)
{
  ctrs_game game;

  ctrs_init_game(&game);

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

  return 0;
}