Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Tweak things here and there so that we can propagate exceptions across the network...
[simgrid.git] / src / xbt / dynar_private.h
1 /* $Id$ */
2
3 /* a generic DYNamic ARray implementation.                                  */
4
5 /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #ifndef DYNAR_PRIVATE_H
11 #define DYNAR_PRIVATE_H
12
13 typedef struct xbt_dynar_s {
14   unsigned long          size;
15   unsigned long          used;
16   unsigned long          elmsize;
17   void           *data;
18   void_f_pvoid_t *free_f;
19 } s_xbt_dynar_t;
20
21 #endif /* DYNAR_PRIVATE_H */