refactor: convert to doxygen-style comments #16013

This commit is contained in:
dundargoc 2021-10-18 02:55:27 +02:00 committed by GitHub
parent aff444659e
commit e62cac5be1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 35 deletions

View File

@ -8520,20 +8520,22 @@ static void f_searchpairpos(typval_T *argvars, typval_T *rettv, FunPtr fptr)
tv_list_append_number(rettv->vval.v_list, (varnumber_T)col);
}
/*
* Search for a start/middle/end thing.
* Used by searchpair(), see its documentation for the details.
* Returns 0 or -1 for no match,
*/
long do_searchpair(const char *spat, // start pattern
const char *mpat, // middle pattern
const char *epat, // end pattern
int dir, // BACKWARD or FORWARD
const typval_T *skip, // skip expression
int flags, // SP_SETPCMARK and other SP_ values
pos_T *match_pos, linenr_T lnum_stop, // stop at this line if not zero
long time_limit // stop after this many msec
)
/// Search for a start/middle/end thing.
/// Used by searchpair(), see its documentation for the details.
///
/// @param spat start pattern
/// @param mpat middle pattern
/// @param epat end pattern
/// @param dir BACKWARD or FORWARD
/// @param skip skip expression
/// @param flags SP_SETPCMARK and other SP_ values
/// @param lnum_stop stop at this line if not zero
/// @param time_limit stop after this many msec
///
/// @returns 0 or -1 for no match,
long do_searchpair(const char *spat, const char *mpat, const char *epat, int dir,
const typval_T *skip, int flags, pos_T *match_pos, linenr_T lnum_stop,
long time_limit)
FUNC_ATTR_NONNULL_ARG(1, 2, 3)
{
char_u *save_cpo;

View File

@ -402,15 +402,15 @@ void emsg_funcname(char *ermsg, const char_u *name)
}
}
/*
* Allocate a variable for the result of a function.
* Return OK or FAIL.
*/
int get_func_tv(const char_u *name, // name of the function
int len, // length of "name" or -1 to use strlen()
typval_T *rettv, char_u **arg, // argument, pointing to the '('
funcexe_T *funcexe // various values
)
/// Allocate a variable for the result of a function.
///
/// @param name name of the function
/// @param len length of "name" or -1 to use strlen()
/// @param arg argument, pointing to the '('
/// @param funcexe various values
///
/// @return OK or FAIL.
int get_func_tv(const char_u *name, int len, typval_T *rettv, char_u **arg, funcexe_T *funcexe)
{
char_u *argp;
int ret = OK;
@ -1436,17 +1436,18 @@ static void argv_add_base(typval_T *const basetv, typval_T **const argvars, int
/// Call a function with its resolved parameters
///
/// @param funcname name of the function
/// @param len length of "name" or -1 to use strlen()
/// @param rettv [out] value goes here
/// @param argcount_in number of "argvars"
/// @param argvars_in vars for arguments, must have "argcount" PLUS ONE elements!
/// @param funcexe more arguments
///
/// @return FAIL if function cannot be called, else OK (even if an error
/// occurred while executing the function! Set `msg_list` to capture
/// the error, see do_cmdline()).
int call_func(const char_u *funcname, // name of the function
int len, // length of "name" or -1 to use strlen()
typval_T *rettv, // [out] value goes here
int argcount_in, // number of "argvars"
typval_T *argvars_in, // vars for arguments, must have "argcount"
// PLUS ONE elements!
funcexe_T *funcexe // more arguments
)
int call_func(const char_u *funcname, int len, typval_T *rettv, int argcount_in,
typval_T *argvars_in, funcexe_T *funcexe)
FUNC_ATTR_NONNULL_ARG(1, 3, 5, 6)
{
int ret = FAIL;
@ -1690,11 +1691,12 @@ static void list_func_head(ufunc_T *fp, int indent, bool force)
/// TFN_NO_DEREF: do not dereference a Funcref
/// Advances "pp" to just after the function name (if no error).
///
/// @param skip only find the end, don't evaluate
/// @param fdp return: info about dictionary used
/// @param partial return: partial of a FuncRef
///
/// @return the function name in allocated memory, or NULL for failure.
char_u *trans_function_name(char_u **pp, bool skip, // only find the end, don't evaluate
int flags, funcdict_T *fdp, // return: info about dictionary used
partial_T **partial // return: partial of a FuncRef
)
char_u *trans_function_name(char_u **pp, bool skip, int flags, funcdict_T *fdp, partial_T **partial)
FUNC_ATTR_NONNULL_ARG(1)
{
char_u *name = NULL;