X-Git-Url: https://git.openssl.org/?a=blobdiff_plain;f=crypto%2Fpqueue%2Fpqueue.h;h=d40d9c7d852d640d722691e3cb162f50c64bb96b;hb=90a5adffc7c12135821ee22f9cc482df3a4bc035;hp=87fc9037c8f3af30365c2cda5fcba5545ca74d87;hpb=88b48dc68024dcc437da4296c9fb04419b0ccbe1;p=openssl.git diff --git a/crypto/pqueue/pqueue.h b/crypto/pqueue/pqueue.h index 87fc9037c8..d40d9c7d85 100644 --- a/crypto/pqueue/pqueue.h +++ b/crypto/pqueue/pqueue.h @@ -1,7 +1,7 @@ /* crypto/pqueue/pqueue.h */ -/* +/* * DTLS implementation written by Nagendra Modadugu - * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. + * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. */ /* ==================================================================== * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. @@ -11,7 +11,7 @@ * are met: * * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in @@ -58,28 +58,30 @@ */ #ifndef HEADER_PQUEUE_H -#define HEADER_PQUEUE_H +# define HEADER_PQUEUE_H -#include -#include -#include +# include +# include +# include +#ifdef __cplusplus +extern "C" { +#endif typedef struct _pqueue *pqueue; -typedef struct _pitem - { - unsigned char priority[8]; /* 64-bit value in big-endian encoding */ - void *data; - struct _pitem *next; - } pitem; +typedef struct _pitem { + unsigned char priority[8]; /* 64-bit value in big-endian encoding */ + void *data; + struct _pitem *next; +} pitem; typedef struct _pitem *piterator; pitem *pitem_new(unsigned char *prio64be, void *data); -void pitem_free(pitem *item); +void pitem_free(pitem *item); pqueue pqueue_new(void); -void pqueue_free(pqueue pq); +void pqueue_free(pqueue pq); pitem *pqueue_insert(pqueue pq, pitem *item); pitem *pqueue_peek(pqueue pq); @@ -88,7 +90,10 @@ pitem *pqueue_find(pqueue pq, unsigned char *prio64be); pitem *pqueue_iterator(pqueue pq); pitem *pqueue_next(piterator *iter); -void pqueue_print(pqueue pq); -int pqueue_size(pqueue pq); +void pqueue_print(pqueue pq); +int pqueue_size(pqueue pq); -#endif /* ! HEADER_PQUEUE_H */ +#ifdef __cplusplus +} +#endif +#endif /* ! HEADER_PQUEUE_H */