reverted state to use long type

This commit is contained in:
Daniel Holden
2014-10-17 15:32:00 +01:00
parent 5094d2c015
commit f6d7d87b8b
3 changed files with 15 additions and 12 deletions

10
mpc.h
View File

@@ -21,14 +21,10 @@
** State Type
*/
/*
** changed to unsigned values for indexing in state,
** invalid is now signified by SIZE_MAX.
*/
typedef struct {
size_t pos;
size_t row;
size_t col;
long pos;
long row;
long col;
} mpc_state_t;
/*