add commentary on pic_get_args

This commit is contained in:
Yuichi Nishiwaki 2014-06-14 16:08:12 +09:00
parent d94d7a7757
commit 77cb18bfd4
1 changed files with 21 additions and 0 deletions

View File

@ -33,6 +33,27 @@ pic_get_proc(pic_state *pic)
return pic_proc_ptr(v);
}
/**
* char type
* ---- ----
* o object
* i int
* I int with exactness
* f float
* F float with exactness
* s string object
* z c string
* m symbol
* v vector object
* b bytevector object
* c char
* l lambda object
* p port object
*
* | optional operator
* * variable length operator
*/
int
pic_get_args(pic_state *pic, const char *format, ...)
{