/* * aegis - a project change supervisor * Copyright (C) 1994, 1996, 1997 Peter Miller; * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. * * MANIFEST: insulate against vs differences */ #ifndef COMMON_AC_STRING_H #define COMMON_AC_STRING_H #include /* * We could have used __USE_BSD, but that defines prototypes for the * index, rindex, bcmp, bzero and bcopy functions, and we don't want * them. This prototype does not conflict, however. */ #if !defined(HAVE_STRCASECMP) || defined(__linux__) # if __STDC__ >= 1 # ifdef __USE_BSD # undef __USE_BSD # endif int strcasecmp(const char *, const char *); # endif #endif /* * We could have used __USE_GNU, but that defines prototypes for * too many other things. This prototype does not conflict, however. */ #if !defined(HAVE_STRSIGNAL) || defined(__linux__) # if __STDC__ >= 1 char *strsignal(int); # endif #endif #if STDC_HEADERS || HAVE_STRING_H # include /* An ANSI string.h and pre-ANSI memory.h might conflict. */ # if !STDC_HEADERS && HAVE_MEMORY_H # include # endif #else /* memory.h and strings.h conflict on some systems. */ # include #endif #endif /* COMMON_AC_STRING_H */