From 8c60a675a2bf363ca1d6a1cb1889440f89bc572c Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Mon, 4 Nov 2002 15:24:56 +0000 Subject: [PATCH] New header files. --- lib/ChangeLog | 8 ++++++++ lib/stpcpy.h | 40 ++++++++++++++++++++++++++++++++++++++++ lib/strcase.h | 35 +++++++++++++++++++++++++++++++++++ lib/strpbrk.h | 36 ++++++++++++++++++++++++++++++++++++ lib/strstr.h | 36 ++++++++++++++++++++++++++++++++++++ lib/xgetcwd.h | 27 +++++++++++++++++++++++++++ 6 files changed, 182 insertions(+) create mode 100644 lib/stpcpy.h create mode 100644 lib/strcase.h create mode 100644 lib/strpbrk.h create mode 100644 lib/strstr.h create mode 100644 lib/xgetcwd.h diff --git a/lib/ChangeLog b/lib/ChangeLog index 4d446b030..63c9751e8 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,11 @@ +2002-11-04 Bruno Haible + + * stpcpy.h: New file, from GNU gettext-0.11.5. + * strcase.h: New file, from GNU gettext-0.11.5. + * strpbrk.h: New file, from GNU gettext-0.11.5. + * strstr.h: New file, from GNU gettext-0.11.5. + * xgetcwd.h: New file, from GNU gettext-0.11.5. + 2002-05-09 Bruno Haible * config.charset: Update for newest glibc. Add canonical names diff --git a/lib/stpcpy.h b/lib/stpcpy.h new file mode 100644 index 000000000..ce8fe0ec4 --- /dev/null +++ b/lib/stpcpy.h @@ -0,0 +1,40 @@ +/* String copying. + Copyright (C) 1995, 2001 Free Software Foundation, Inc. + + 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, 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-1307, USA. */ + +#ifndef _STPCPY_H +#define _STPCPY_H + +#ifndef PARAMS +# if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES +# define PARAMS(args) args +# else +# define PARAMS(args) () +# endif +#endif + +#if HAVE_STPCPY + +/* Get stpcpy() declaration. */ +#include + +#else + +extern char *stpcpy PARAMS ((char *__dst, const char *__src)); + +#endif + +#endif /* _STPCPY_H */ diff --git a/lib/strcase.h b/lib/strcase.h new file mode 100644 index 000000000..be2d0dd71 --- /dev/null +++ b/lib/strcase.h @@ -0,0 +1,35 @@ +/* Case-insensitive string comparison functions. + Copyright (C) 1995-1996, 2001 Free Software Foundation, Inc. + + 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, 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-1307, USA. */ + +#ifndef _STRCASE_H +#define _STRCASE_H + +#include + +#ifndef PARAMS +# if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES +# define PARAMS(args) args +# else +# define PARAMS(args) () +# endif +#endif + +extern int strcasecmp PARAMS ((const char *__s1, const char *__s2)); +extern int strncasecmp PARAMS ((const char *__s1, const char *__s2, + size_t __n)); + +#endif /* _STRCASE_H */ diff --git a/lib/strpbrk.h b/lib/strpbrk.h new file mode 100644 index 000000000..67aa525d9 --- /dev/null +++ b/lib/strpbrk.h @@ -0,0 +1,36 @@ +/* Searching in a string. + Copyright (C) 2001 Free Software Foundation, Inc. + + 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, 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-1307, USA. */ + +#ifndef PARAMS +# if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES +# define PARAMS(Args) Args +# else +# define PARAMS(Args) () +# endif +#endif + +#if HAVE_STRPBRK + +/* Get strpbrk() declaration. */ +#include + +#else + +/* Find the first occurrence in S of any character in ACCEPT. */ +extern char *strpbrk PARAMS ((const char *s, const char *accept)); + +#endif diff --git a/lib/strstr.h b/lib/strstr.h new file mode 100644 index 000000000..0162d0971 --- /dev/null +++ b/lib/strstr.h @@ -0,0 +1,36 @@ +/* Searching in a string. + Copyright (C) 2001 Free Software Foundation, Inc. + + 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, 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-1307, USA. */ + +#ifndef PARAMS +# if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES +# define PARAMS(Args) Args +# else +# define PARAMS(Args) () +# endif +#endif + +#if HAVE_STRSTR + +/* Get strstr() declaration. */ +#include + +#else + +/* Find the first occurrence of NEEDLE in HAYSTACK. */ +extern char *strstr PARAMS ((const char *haystack, const char *needle)); + +#endif diff --git a/lib/xgetcwd.h b/lib/xgetcwd.h new file mode 100644 index 000000000..2f6df8a6d --- /dev/null +++ b/lib/xgetcwd.h @@ -0,0 +1,27 @@ +/* xgetcwd -- return current directory with unlimited length + Copyright (C) 1995, 2001 Free Software Foundation, Inc. + + 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, 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-1307, USA. */ + +#ifndef PARAMS +# if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES +# define PARAMS(args) args +# else +# define PARAMS(args) () +# endif +#endif + +/* Wrapper function with error checking for standard function. */ +extern char *xgetcwd PARAMS ((void)); -- 2.11.0