On Thu, 2008-07-10 at 18:24 +0200, Julien Claassen wrote:
> Sorry folks!
> But I'mtoo stupid. I have a struct, which contains a pointer to itself as an
> element. How to write this. I once knew, but now I fail. It's a shame! :-(
Either
typedef struct foo foo_t;
struct foo {
foo_t* pointer;
};
or
struct foo {
struct foo* pointer;
};
--ll
_______________________________________________
Linux-audio-dev mailing list
Linux-audio-dev@email-addr-hidden
http://lists.linuxaudio.org/mailman/listinfo/linux-audio-dev
This archive was generated by hypermail 2.1.8 : Fri Jul 11 2008 - 00:15:02 EEST