annotate debug_db.h @ 59:cd05eee90279

fix code.
author koba <koba@cr.ie.u-ryukyu.ac.jp>
date Mon, 07 Feb 2011 03:31:18 +0900
parents b31bed246abd
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
53
b31bed246abd fix code and add log.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 #ifndef INCLUDE_DEBUG_DB
b31bed246abd fix code and add log.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 #define INCLUDE_DEBUG_DB
b31bed246abd fix code and add log.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3
b31bed246abd fix code and add log.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 typedef struct DebugDB {
b31bed246abd fix code and add log.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 const char *name;
b31bed246abd fix code and add log.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 int count;
b31bed246abd fix code and add log.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7
b31bed246abd fix code and add log.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 } DebugDB, DebugDBPtr;
b31bed246abd fix code and add log.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9
b31bed246abd fix code and add log.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 #endif