File: strverscmp.h

package info (click to toggle)
a2ps 1%3A4.13b-4.3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 10,088 kB
  • ctags: 4,763
  • sloc: ansic: 31,114; sh: 14,723; lex: 2,286; perl: 1,150; yacc: 757; makefile: 707; lisp: 399; ada: 263; objc: 189; java: 151; f90: 109; pascal: 109; sed: 107; ml: 85; sql: 74; modula3: 33; haskell: 32; python: 24
file content (20 lines) | stat: -rw-r--r-- 408 bytes parent folder | download | duplicates (36)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* 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_ */