Home
last modified time | relevance | path

Searched refs:prevch (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/bsd/less/dist/
H A Dmkhelp.c28 int prevch; local
34 while (prevch = ch, (ch = getchar()) != EOF)
51 if (prevch != '\r')
55 if (prevch != '\n')
H A Dmkhelp.pl16 my $prevch;
18 $prevch = $ch;
30 print "'\\n',\n" if $prevch ne "\r";
32 print "'\\n',\n" if $prevch ne "\n";
H A Dmkhelp.py14 prevch = ch variable
27 if prevch != "\r": print("'\\n',")
29 if prevch != "\n": print("'\\n',")
/netbsd-src/games/boggle/boggle/
H A Dbog.c547 int prevch, previndex, st; in checkdict() local
552 prevch ='a'; in checkdict()
558 if (*w != prevch) { in checkdict()
570 previndex = prevch - 'a'; in checkdict()
571 prevch = i + 'a'; in checkdict()
/netbsd-src/lib/libintl/
H A Dplural_parser.c159 int ch, prevch; in tokenize() local
179 prevch = ch; in tokenize()
181 if (ch != prevch) { in tokenize()
195 prevch = ch; in tokenize()
199 switch (prevch) { in tokenize()
206 token_data->op = prevch; /* OP_LT or OP_GT */ in tokenize()
211 token_data->op = ch+prevch; in tokenize()
212 switch (prevch) { in tokenize()