File: wncmp.h

package info (click to toggle)
libwn6 6.0-17
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 6,012 kB
  • ctags: 3,903
  • sloc: ansic: 45,078; makefile: 960; csh: 274; sh: 17
file content (35 lines) | stat: -rw-r--r-- 748 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/****************************************************************************

COPYRIGHT NOTICE:

  The source code in this file is provided free of charge
  to the author's consulting clients.  It is in the
  public domain and therefore may be used by anybody for
  any purpose.

AUTHOR:

  Will Naylor

****************************************************************************/
#ifndef wncmpH
#define wncmpH



#include "wnlib.h"



int wn_intcmp(int i1,int i2);
int wn_ptrcmp(ptr p1,ptr p2);
int wn_ptrNULLcmp(bool *psuccess,ptr p1,ptr p2);
int wn_boolcmp(bool b1,bool b2);
int wn_doublecmp(double d1,double d2);
int wn_pdoublecmp(double *pd1,double *pd2);
int wn_numstrcmp(char *s1,char *s2);
int wn_memcmp(ptr m1,ptr m2,int len);



#endif