1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_rdf_compare
7
8
10 #ifdef HAVE_STDINT_H
11 #include <stdint.h>
12 #endif /* HAVE_STDINT_H */
13
14 #ifdef HAVE_STDBOOL_H
15 #include <stdbool.h>
16 #endif /* HAVE_STDBOOL_H */
17
18 #include <ldns/ldns.h>
19
20 int ldns_rdf_compare(const ldns_rdf *rd1, const ldns_rdf *rd2);
21
23 ldns_rdf_compare() compares two rdf's. Order is canonical.
24 rd1: the first one
25 rd2: the second one
26 Returns 0 if equal
27 Returns -1 if rd1 comes before rd2
28 Returns +1 if rd2 comes before rd1
29
31 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
32 Rozendaal and Miek Gieben.
33
34
36 Please report bugs to ldns-team@nlnetlabs.nl or in our Bugzilla at
37 http://www.nlnetlabs.nl/bugs/index.html
38
39 Be sure to select ldns as the product.
40
41
43 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
44 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
45 PARTICULAR PURPOSE.
46
48 perldoc Net::DNS, RFC1043, RFC1035, RFC4033, RFC4034 and RFC4035.
49
51 This manpage was automaticly generated from the ldns source code by use
52 of Doxygen and some perl.
53
54
55
56 ldns(25 Apr 2005)