Introduction - If you have any usage issues, please Google them yourself
Status StrAssign (SString T, char* chars) (//generate a value equal to its string of chars of T int i if (strlen (chars)> MAXSTRLEN) return ERROR else (T [0] = strlen (chars) for (i = 1 i <= T [0] i++) T [i] =* (chars+ i-1) return OK))