Home
last modified time | relevance | path

Searched refs:l_idchars (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/vgrind/
H A Dvfontedpr.c115 char *l_idchars; /* characters legal in identifiers in addition variable
303 l_idchars = tgetstr ("id", &cp); in main()
305 if (l_idchars == NIL) in main()
306 l_idchars = "_"; in main()
425 #define isidchr(c) (isalnum(c) || ((c) != NIL && strchr(l_idchars, (c)) != NIL))
H A Dretest.c11 char *l_idchars = "_"; /* characters legal in identifiers in addition variable
H A Dregexp.c15 extern char *l_idchars; /* set of characters legal in identifiers
22 (isalnum(c) || ((c) != NIL && strchr(l_idchars, (c)) != NIL))