builtin.cpp: update template builtin function

This commit is contained in:
David Adam 2017-03-22 19:43:13 +08:00
parent 1cb69e6f5c
commit c32032757e

View file

@ -4,7 +4,7 @@
// //
// 1). Create a function in builtin.c with the following signature: // 1). Create a function in builtin.c with the following signature:
// //
// <tt>static int builtin_NAME( parser_t &parser, wchar_t ** args )</tt> // <tt>static int builtin_NAME(parser_t &parser, io_streams_t &streams, wchar_t **argv)</tt>
// //
// where NAME is the name of the builtin, and args is a zero-terminated list of arguments. // where NAME is the name of the builtin, and args is a zero-terminated list of arguments.
// //