SomVaBuf get valist: Difference between revisions
Appearance
Created page with "Initializes a va_list from the SOM buffer (somVaBuf). ==Syntax== <PRE> somVaBuf vb; va_list *ap; somVaBuf_get_valist(vb, ap); </PRE> ==Parameters== ; vb (somVaBuf)..." |
No edit summary |
||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:somVaBuf_get_valist}} | |||
Initializes a va_list from the SOM buffer (somVaBuf). | Initializes a va_list from the SOM buffer (somVaBuf). | ||
Line 25: | Line 26: | ||
==Related== | ==Related== | ||
===Functions=== | ===Functions=== | ||
* somVaBuf_create | * [[somVaBuf_create]] | ||
* somVaBuf_add | * [[somVaBuf_add]] | ||
* somVaBuf_destroy | * [[somVaBuf_destroy]] | ||
* somvalistGetTarget | * [[somvalistGetTarget]] | ||
* somvalistSetTarget | * [[somvalistSetTarget]] | ||
[[Category:SOM Kernel]] | [[Category:SOM Kernel]] |
Latest revision as of 03:37, 13 October 2017
Initializes a va_list from the SOM buffer (somVaBuf).
Syntax
somVaBuf vb; va_list *ap; somVaBuf_get_valist(vb, ap);
Parameters
- vb (somVaBuf)
- Value (somVaBuf) returned from somVaBuf_create function.
- ap (va_list *)
- Pointer to a va_list.
Return Code
- rc
- None. The user's va_list has been initialized from the va_list in somVaBuf.
Remarks
This function copies the va_list in the somVaBuf structure to the passed va_list.
Example Code
See function somVaBuf_create.