Home | Info | Community | Development | myReactOS | Contact Us
Search a list of functions for a particular function by name.
Definition at line 123 of file slang_compile_function.c.
Referenced by parse_expression(), and slang_function_scope_find_by_name().
{ unsigned int i; for (i = 0; i < funcs->num_functions; i++) if (a_name == funcs->functions[i].header.a_name) return 1; if (all_scopes && funcs->outer_scope != NULL) return slang_function_scope_find_by_name(funcs->outer_scope, a_name, 1); return 0; }