/* stateNodeTest.c */
/* BITTE MIT IHREM NAMEN ERSETZEN */


/*
 * gcc -o stateNodeTest stateNodeTest.c stateNode.c
 */


#include "stateNode.h"
#include <stdlib.h>


void exitOnObjectCouldNotBeCreated() {
  printf("Fatal error: object could not be allocated.\n");
  exit(-1);
}



boolean gangOfFour(StateNode **stateNodeArray) {
  // ...
  return FALSE;
}



int main() {
  // ...

  return 0;
}
