enum ErrCSV{
};
extern char *strtok(char *s, char *delim);
/*
Item :the content of the extracted item,the function will empty the buffer before writing it.
Size :the buffer size of the Item
Str :the location of a pointer variable which stores the address of the string to be read.
the function write the next byte's address to the variable.
delim:the token of the end of the Item
*/
ErrCSV ReadItem(CHAR *Item, BYTE Size, CHAR **Str, CHAR *delim)
{
}
};
extern char *strtok(char *s, char *delim);
/*
Item :the content of the extracted item,the function will empty the buffer before writing it.
Size :the buffer size of the Item
Str :the location of a pointer variable which stores the address of the string to be read.
the function write the next byte's address to the variable.
delim:the token of the end of the Item
*/
ErrCSV ReadItem(CHAR *Item, BYTE Size, CHAR **Str, CHAR *delim)
{
}