X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=x2p%2Futil.h;h=3330a60957e494ecce94d0ed492acac61f2ca16d;hb=f3365a56c42f2f31eed84ad55632f9786ee09044;hp=ff93e8ac7a088e62c2cee3a13ff44c22bb216a2f;hpb=9607fc9c489d4095e3baa795d7ead7acba96137d;p=p5sagit%2Fp5-mst-13.2.git diff --git a/x2p/util.h b/x2p/util.h index ff93e8a..3330a60 100644 --- a/x2p/util.h +++ b/x2p/util.h @@ -1,11 +1,10 @@ -/* $RCSfile: util.h,v $$Revision: 4.1 $$Date: 92/08/07 18:29:30 $ +/* util.h * - * Copyright (c) 1991-1997, Larry Wall + * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2005 + * by Larry Wall and others * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. - * - * $Log: util.h,v $ */ /* is the string for makedir a directory name or a filename? */ @@ -19,27 +18,15 @@ int eaccess(); #endif -char *getwd(); -int makedir(); - -char * cpy2 _(( char *to, char *from, int delim )); -char * cpytill _(( char *to, char *from, int delim )); -void growstr _(( char **strptr, int *curlen, int newlen )); -char * instr _(( char *big, char *little )); -char * safecpy _(( char *to, char *from, int len )); -char * savestr _(( char *str )); -#if defined(I_STDARG) && defined(HAS_VPRINTF) -void croak _(( char *pat, ... )); -void fatal _(( char *pat, ... )); -void warn _(( char *pat, ... )); -#else /* defined(I_STDARG) && defined(HAS_VPRINTF) */ -void croak _(( char *pat, int a1, int a2, int a3, int a4 )); -void Myfatal (); -void warn (); -#endif /* defined(I_STDARG) && defined(HAS_VPRINTF) */ -int prewalk _(( int numit, int level, int node, int *numericptr )); +char * cpy2 ( char *to, char *from, int delim ); +char * cpytill ( char *to, char *from, int delim ); +void growstr ( char **strptr, int *curlen, int newlen ); +char * instr ( char *big, const char *little ); +char * savestr ( const char *str ); +void fatal ( const char *pat, ... ); +void warn ( const char *pat, ... ); +int prewalk ( int numit, int level, int node, int *numericptr ); -Malloc_t safemalloc _((MEM_SIZE nbytes)); -Malloc_t safecalloc _((MEM_SIZE elements, MEM_SIZE size)); -Malloc_t saferealloc _((Malloc_t where, MEM_SIZE nbytes)); -Free_t safefree _((Malloc_t where)); +Malloc_t safemalloc (MEM_SIZE nbytes); +Malloc_t saferealloc (Malloc_t where, MEM_SIZE nbytes); +Free_t safefree (Malloc_t where);