]> git.sur5r.net Git - openldap/blob - doc/man/man3/lber-types.3
f4627bd6cf8414da27d7e4fbbe84ab8b3f080b40
[openldap] / doc / man / man3 / lber-types.3
1 .TH LBER_TYPES 3 "22 July 2001" "OpenLDAP LDVERSION"
2 .\" $OpenLDAP$
3 .\" Copyright 1998-2000 The OpenLDAP Foundation All Rights Reserved.
4 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
5 .SH NAME
6 ber_int_t, ber_len_t, ber_tag_t \- LBER types
7 .SH SYNOPSIS
8 .nf
9 .ft B
10 #include <lber.h>
11 .ft
12 .fi
13 .LP
14 .nf
15 .ft B
16 typedef impl_int_t ber_int_t;
17 typedef impl_len_t ber_len_t;
18 typedef impl_tag_t ber_tag_t;
19 .ft
20 .fi
21 .SH DESCRIPTION
22 .LP
23 The are basic types defined for use with the Lightweight BER library.
24 .LP
25 .B ber_int_t
26 is a signed integer of at least 32 bits.  It is commonly equivalent to
27 .BR int .
28 .LP
29 .B ber_len_t
30 is a unsigned integer of at least 32 bits used to represent a length.  
31 It is commonly equivalent to a
32 .BR size_t .
33 .LP
34 .B ber_tag_t
35 is a unsigned integer of at least 32 bits used to represent a
36 BER tag.  It is commonly equivalent to a
37 .BR unsigned\ long .
38 .SH SEE ALSO
39 .BR lber-encode (3)
40 .BR lber-decode (3)
41 .BR lber-memory (3)
42 .LP
43 .SH ACKNOWLEDGEMENTS
44 .B      OpenLDAP
45 is developed and maintained by The OpenLDAP Project (http://www.openldap.org/).
46 .B      OpenLDAP
47 is derived from University of Michigan LDAP 3.3 Release.