syntax - Why c functions can be defined this way? -


possible duplicates:
what useful c syntax?
what strange function definition syntax in c?

static void add_shopt_to_alist (opt, on_or_off)      char *opt;      int on_or_off; { ... } 

what's syntax :

(opt, on_or_off)          char *opt;          int on_or_off; 

?


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -