X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6760cb07d6b57be16928d95339d71e57c4e24f36..9006d78ba8a08a6500c994bb8141f48376448fc4:/include/xbt/set.h diff --git a/include/xbt/set.h b/include/xbt/set.h index a463a09ea7..0df9ff167f 100644 --- a/include/xbt/set.h +++ b/include/xbt/set.h @@ -49,7 +49,7 @@ SG_BEGIN_DECL() * @{ */ /** \brief Opaque type representing a set */ - typedef struct xbt_set_ *xbt_set_t; +typedef struct xbt_set_ *xbt_set_t; #define XBT_SET_HEADERS \ unsigned int ID; \ @@ -57,12 +57,12 @@ SG_BEGIN_DECL() unsigned int name_len /** \brief It must be possible to cast set elements to this type */ - typedef struct xbt_set_elm_ { - unsigned int ID; /**< Identificator (system assigned) */ - char *name; /**< Name (user assigned) */ - unsigned int name_len; +typedef struct xbt_set_elm_ { + unsigned int ID; /**< Identificator (system assigned) */ + char *name; /**< Name (user assigned) */ + unsigned int name_len; /**< Length of the name */ - } s_xbt_set_elm_t, *xbt_set_elm_t; +} s_xbt_set_elm_t, *xbt_set_elm_t; /*####[ Functions ]##########################################################*/ XBT_PUBLIC(xbt_set_t) xbt_set_new(void); @@ -85,7 +85,8 @@ XBT_PUBLIC(void) xbt_set_remove_by_name_ext(xbt_set_t set, const char *key, int key_len); XBT_PUBLIC(void) xbt_set_remove_by_id(xbt_set_t set, int id); -XBT_PUBLIC(xbt_set_elm_t) xbt_set_get_by_name(xbt_set_t set, const char *key); +XBT_PUBLIC(xbt_set_elm_t) xbt_set_get_by_name(xbt_set_t set, + const char *key); XBT_PUBLIC(xbt_set_elm_t) xbt_set_get_by_name_ext(xbt_set_t set, const char *key, int key_len); @@ -104,7 +105,7 @@ XBT_PUBLIC(unsigned long) xbt_set_length(const xbt_set_t set); */ /** @brief Cursor type */ - typedef struct xbt_set_cursor_ *xbt_set_cursor_t; +typedef struct xbt_set_cursor_ *xbt_set_cursor_t; XBT_PUBLIC(void) xbt_set_cursor_first(xbt_set_t set, xbt_set_cursor_t * cursor); @@ -122,4 +123,4 @@ XBT_PUBLIC(int) xbt_set_cursor_get_or_free(xbt_set_cursor_t * cursor, /* @} */ SG_END_DECL() -#endif /* _XBT_SET_H */ +#endif /* _XBT_SET_H */