1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-01 10:33:30 +02:00
Files
coreutils/lib/strverscmp.h

21 lines
408 B
C
Raw Normal View History

1997-07-09 15:31:29 +00:00
/* strverscmp.h -- compare strings holding indices/version numbers */
#ifndef STRVERSCMP_H_
# define STRVERSCMP_H_
1997-09-14 03:32:09 +00:00
# if HAVE_CONFIG_H
# include <config.h>
# endif
# ifndef PARAMS
1997-12-21 11:22:51 +00:00
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
# define PARAMS(Args) Args
# else
1997-12-21 11:22:51 +00:00
# define PARAMS(Args) ()
# endif
# endif
int strverscmp PARAMS ((const char*, const char*));
1997-07-09 15:31:29 +00:00
#endif /* not STRVERSCMP_H_ */