[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: ltable implementation
- From: "CHU Run-min" <churunmin@...>
- Date: Thu, 19 Jun 2008 21:14:18 +0800
typedef union TKey {
struct {
TValuefields;
struct Node *next; /* for chaining */
} nk;
TValue tvk;
} TKey;
I found this is a union just now.
I got it! Thank you very much!