mirror of
https://github.com/coreutils/coreutils.git
synced 2024-11-26 11:23:47 +08:00
21 lines
408 B
C
21 lines
408 B
C
/* strverscmp.h -- compare strings holding indices/version numbers */
|
|
|
|
#ifndef STRVERSCMP_H_
|
|
# define STRVERSCMP_H_
|
|
|
|
# if HAVE_CONFIG_H
|
|
# include <config.h>
|
|
# endif
|
|
|
|
# ifndef PARAMS
|
|
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
|
|
# define PARAMS(Args) Args
|
|
# else
|
|
# define PARAMS(Args) ()
|
|
# endif
|
|
# endif
|
|
|
|
int strverscmp PARAMS ((const char*, const char*));
|
|
|
|
#endif /* not STRVERSCMP_H_ */
|