Re: typedef struct
- From: Ben Pfaff <blp@xxxxxxxxxxxxxxx>
- Date: Sat, 30 Apr 2005 09:03:31 -0700
Russell Shaw <rjshawN_o@xxxxxxxxxxxxxxxxxxxxx> writes:
> I could understand typedef struct { } jmp_buf, but how do i
> interpret typedef struct { } jmp_buf[1] ?
It declares a jmp_buf as an array of 1 element of the given
structure. The C standard says that jmp_buf is an array type, so
this declaration fulfills that requirement.
--
Bite me! said C.
.
- References:
- typedef struct
- From: Russell Shaw
- typedef struct
- Prev by Date: Re: How to get file size?
- Next by Date: Re: How is strlen implemented?
- Previous by thread: typedef struct
- Next by thread: Re: typedef struct
- Index(es):
Relevant Pages
|