home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
vol_200
/
296_01
/
sampl.sed
< prev
next >
Wrap
Text File
|
1989-10-03
|
499b
|
31 lines
#include <stdio.h>
typedef struct waldo { int i; float z; } FOOBAR;
double x;
main(int argc,char *argv[])
{
float x = 2.0;
FOOBAR y;
func1(x,y);
noargs();
weird();
}
double func1(float x,FOOBAR y,FOOBAR z,struct waldo *q,struct waldo r)
{
}
int noargs(void)
{
}
weird(void)
{
/* no args and defaults to int type func */
}
double * crazy(int ***q)
{
/* The func type is on the previous line! */
}