
/* Declaration file for various helper functions
   to be used in the compiler project 
   by Jason Plumb */

int ccstrncmp(char *pStr1, char *pStr2, int iLen);
int ccstrcmp(char *pStr1, char *pStr2);
int ccstrlen(char *pStr);
void ccstrcpy(char *pDest, char *pSrc);
void ccstrncpy(char *pDest, char *pSrc, int iLen);
int ccatoi(char *pStr);
void ccRemoveComments(char *pStr);		//Remove all comments from a buffer
bool isAlpha(char c);					//Determines if a char is an alpha char
bool isWS(char c);						//Determines if a char is whitespace
bool isOp(char *pStr, int iLen);		//Determines if a string is an op
