changed enum and structs names to _t

This commit is contained in:
Jan Hutter
2005-11-24 09:17:51 +00:00
parent 1f9c9180e4
commit 95c61cb956
45 changed files with 199 additions and 178 deletions
+6 -6
View File
@@ -26,15 +26,15 @@
#include <utils/allocator.h>
/**
* Private data of an packet_t object
*/
typedef struct private_packet_s private_packet_t;
typedef struct private_packet_t private_packet_t;
struct private_packet_s {
/**
* Private data of an packet_t object.
*/
struct private_packet_t {
/**
* Public part of a packet_t object
* Public part of a packet_t object.
*/
packet_t public;
};