CS 2734
Computer Organization II
Do the following prior to the laboratory.
make to be sure that you have downloaded
the programs correctly.
You may find the following C library functions useful:
size_t strspn(const char *cs, const char *ct);
returns the length of the prefix of cs consisting of
characters that are in ct.
size_t strcspn(const char *cs, const char *ct);
returns the length of the prefix in cs consisting of
characters not in ct.
parseLine.c as follows:
Revision Date: 2/28/97