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
|
|
|
|
|
|
1997-09-14 03:36:38 +00:00
|
|
|
# ifndef PARAMS
|
1997-12-21 11:22:51 +00:00
|
|
|
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
|
|
|
|
|
# define PARAMS(Args) Args
|
1997-09-14 03:36:38 +00:00
|
|
|
# else
|
1997-12-21 11:22:51 +00:00
|
|
|
# define PARAMS(Args) ()
|
1997-09-14 03:36:38 +00:00
|
|
|
# endif
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
|
|
int strverscmp PARAMS ((const char*, const char*));
|
1997-07-09 15:31:29 +00:00
|
|
|
|
|
|
|
|
#endif /* not STRVERSCMP_H_ */
|