1122
Appendix A: System Routines — Variable Name Utilities
TI
-
89 / TI
-
92 Plus Developer Guide
Not for Distribution
Beta Version January 26, 2001
StrToTokN
Declaration:
BYTE *
StrToTokN
(BYTE *
StrSymName
, BYTE *
TokName
)
Category(ies):
Variable Name Utilities
Description:
Convert an ASCIIZ symbol name into tokenized format and store in
TokName
. Note that this routine does NOT handle reserved names.
TokName
must point to a buffer of MAX_SYM_LEN bytes. The tokenized
named is stored there starting at the end of the buffer.
Inputs:
StrSymName
— ASCIIZ name to convert into tokenized format.
Outputs:
TokName
— Pointer to ASCIIZ symbol name in tokenized format.
Assumptions:
This routine merely converts a name into tokenized format, it does not
handle reserved names or check for the validity of the name passed to it
and so in general
TokenizeSymName
should be used to tokenize symbol
names.
Side Effects:
None
Availability:
All versions of the TI
-
89 / TI
-
92 Plus.
TI
-
89 / TI
-
92 Plus
Differences:
None
See Also: TokenizeSymName
Example:
See
PopupClear
.