揮発性のメモ2

http://d.hatena.ne.jp/iww/

リストにつかう用に構造体を宣言する

自己参照構造体のtypedef宣言

// 駄目なパターン
typedef struct {
    int data;
    hoge_t *next;
} hoge_t;

// いけるパターン
typedef struct __hoge_t {
    int data;
    struct __hoge_t *next;
} hoge_t;