view lib/filemode.h @ 4120:77d7a6d46166

(memcoll): Fall back on a simple algorithm using memcmp if strcoll doesn't work.
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 31 Dec 2002 22:11:34 +0000
parents 6dfbec8a5a2d
children c6450308f123
line wrap: on
line source

#ifndef FILEMODE_H_

# if HAVE_CONFIG_H
#  include <config.h>
# endif

# include <sys/types.h>

# ifndef PARAMS
#  if defined PROTOTYPES || (defined __STDC__ && __STDC__)
#   define PARAMS(Args) Args
#  else
#   define PARAMS(Args) ()
#  endif
# endif

void mode_string PARAMS ((mode_t mode, char *str));

#endif