摘要:
struct Floatlist /* Element of list of floats */{ double value; struct Floatlist *next;};typedef struct Floatlist SFloatlist;struct Tmplist /* Element of temp list for Pattern & Curve data */{ int i; char ID[MAXID+1]; SFloatlist *x; SFloatlist *y; struct Tmplist *next;};typedef struct Tmplist ST 阅读全文
posted @ 2013-09-09 14:07
KingOfFreedom
阅读(309)
评论(0)
推荐(0)