// =====================================
// Turing Machine (C++ Implementation)
// Alex Vinokur
// http://up.to/alexvn
// =====================================
// ===============
// File defs.h
// ===============
// ###############
#ifndef _DEFS_H
#define _DEFS_H
#include "common.h"
// =========
typedef string state_t;
typedef string symbol_t;
typedef string shift_t;
typedef unsigned int uint;
#endif // _DEFS_H