Difference between revisions of "ISInterface:DataParse"
Jump to navigation
Jump to search
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | ==Syntax== | ||
+ | *int DataParse(const char *ToParse, char *buf, int buflen) | ||
== Purpose == | == Purpose == | ||
+ | Performs in-place processing of [[LavishScript:Data Sequences|LavishScript Data Sequences]] | ||
== Usage == | == Usage == | ||
=== Parameters === | === Parameters === | ||
+ | *char *ToParse | ||
+ | :'''[in]''' Null-terminated string to process | ||
+ | *char *buf | ||
+ | :'''[out]''' Results of the data parsing | ||
+ | *int buflen | ||
+ | :'''[in]''' Buffer length | ||
=== Return Value === | === Return Value === | ||
+ | *int | ||
+ | :Returns the length of the data in buf or -1 if the buffer would have overflowed | ||
== Examples == | == Examples == | ||
Line 9: | Line 20: | ||
== See Also == | == See Also == | ||
* [[ISXDK:ISInterface|ISInterface]] | * [[ISXDK:ISInterface|ISInterface]] | ||
− | + | *[[LavishScript:Data Sequences|Data Sequences]] | |
[[Category:ISXDK]] | [[Category:ISXDK]] | ||
[[Category:ISInterface]] | [[Category:ISInterface]] |
Latest revision as of 00:21, 2 September 2005
Syntax
- int DataParse(const char *ToParse, char *buf, int buflen)
Purpose
Performs in-place processing of LavishScript Data Sequences
Usage
Parameters
- char *ToParse
- [in] Null-terminated string to process
- char *buf
- [out] Results of the data parsing
- int buflen
- [in] Buffer length
Return Value
- int
- Returns the length of the data in buf or -1 if the buffer would have overflowed