MCPcopy Create free account
hub / github.com/git/git / internal_function

Function internal_function

compat/regex/regcomp.c:970–980  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

968 return REG_NOERROR;
969}
970
971/* Initialize WORD_CHAR table, which indicate which character is
972 "word". In this case "word" means that it is the word construction
973 character used by some operators like "\<", "\>", etc. */
974
975static void
976internal_function
977init_word_char (re_dfa_t *dfa)
978{
979 int i, j, ch;
980 dfa->word_ops_used = 1;
981 for (i = 0, ch = 0; i < BITSET_WORDS; ++i)
982 for (j = 0; j < BITSET_WORD_BITS; ++j, ++ch)
983 if (isalnum (ch) || ch == '_')

Callers

nothing calls this directly

Calls 1

re_string_wchar_atFunction · 0.85

Tested by

no test coverage detected