summaryrefslogtreecommitdiff
path: root/test/memory_test.c
blob: 7a61f6afe39622dc22aa28d129ca01f7e69ddcd0 (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);

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

  return 0;
}