]>
diplodocus.org Git - nmh/blob - sbr/uprf.c
3 * uprf.c -- "unsigned" lexical prefix
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
14 uprf (const char *c1
, const char *c2
)
25 c
= (isalpha(c
) && isupper(c
)) ? tolower(c
) : c
;
26 mask
= (isalpha(mask
) && isupper(mask
)) ? tolower(mask
) : mask
;