Improve.
[gnutls.git] / lib / gnutls_num.h
blob6ec63cae913f46ed03ad1c35b720309c37350e0a
1 /*
2 * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2008 Free Software Foundation
4 * Author: Nikos Mavrogiannopoulos
6 * This file is part of GNUTLS.
8 * The GNUTLS library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 2.1 of
11 * the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
21 * USA
25 #ifndef GNUTLS_NUM_H
26 # define GNUTLS_NUM_H
28 #include <gnutls_int.h>
30 #include <minmax.h>
32 uint32_t _gnutls_uint24touint32 (uint24 num);
33 uint24 _gnutls_uint32touint24 (uint32_t num);
34 uint32_t _gnutls_read_uint32 (const opaque * data);
35 uint16_t _gnutls_read_uint16 (const opaque * data);
36 uint32_t _gnutls_conv_uint32 (uint32_t data);
37 uint16_t _gnutls_conv_uint16 (uint16_t data);
38 uint32_t _gnutls_read_uint24 (const opaque * data);
39 void _gnutls_write_uint24 (uint32_t num, opaque * data);
40 void _gnutls_write_uint32 (uint32_t num, opaque * data);
41 void _gnutls_write_uint16 (uint16_t num, opaque * data);
42 uint32_t _gnutls_uint64touint32 (const uint64 *);
44 int _gnutls_uint64pp (uint64 *);
45 # define _gnutls_uint64zero(x) x.i[0] = x.i[1] = x.i[2] = x.i[3] = x.i[4] = x.i[5] = x.i[6] = x.i[7] = 0
46 # define UINT64DATA(x) x.i
48 #endif /* GNUTLS_NUM_H */