-
+ CBB804CBF1D96718EEBC82ABDED7FB63514BA10EFD2EB136A606D85BD1896DBEAA0D631CD87BF01C8C1E014350F5664309EC9136A0D4C6EDF63C039227450926
mpi/include/compat.h
(0 . 0)(1 . 25)
906 #ifndef _COMPAT_H_
907 #define _COMPAT_H_
908
909 /* Note this isn't identical to a C locale isspace() without \f and
910 \v, but works for the purposes used here. */
911 #define ascii_isspace(a) ((a)==' ' || (a)=='\n' || (a)=='\r' || (a)=='\t')
912
913 int hextobyte( const char *s );
914 int ascii_toupper (int c);
915 int ascii_tolower (int c);
916 int ascii_strcasecmp( const char *a, const char *b );
917 int ascii_strncasecmp( const char *a, const char *b, size_t n);
918
919 #ifndef HAVE_STRSEP
920 char *strsep (char **stringp, const char *delim);
921 #endif
922
923 #if __GNUC__ >= 4
924 char *xstrconcat (const char *s1, ...) __attribute__ ((sentinel(0)));
925 #else
926 char *xstrconcat (const char *s1, ...);
927 #endif
928
929
930 #endif /* !_COMPAT_H_ */