揮発性のメモ2

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

2009-11-25から1日間の記事一覧

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

C

自己参照構造体のtypedef宣言 // 駄目なパターン typedef struct { int data; hoge_t *next; } hoge_t; // いけるパターン typedef struct __hoge_t { int data; struct __hoge_t *next; } hoge_t;