Deleted Added
full compact
locate.h (17592) locate.h (18829)
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 51 unchanged lines hidden (view full) ---

60 define TOLOWER(ch) tolower(ch)
61#else
62
63u_char myctype[UCHAR_MAX + 1];
64#define TOLOWER(ch) (myctype[ch])
65#endif
66
67#define INTSIZE (sizeof(int))
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 51 unchanged lines hidden (view full) ---

60 define TOLOWER(ch) tolower(ch)
61#else
62
63u_char myctype[UCHAR_MAX + 1];
64#define TOLOWER(ch) (myctype[ch])
65#endif
66
67#define INTSIZE (sizeof(int))
68
69#define LOCATE_REG "*?[]\\" /* fnmatch(3) meta characters */