Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cdecl(1) [debian man page]

CDECL(1)						    BSD General Commands Manual 						  CDECL(1)

NAME
cdecl -- decode C type declarations SYNOPSIS
cdecl [-V] [-o file] [file ...] DESCRIPTION
The cdecl utility decodes C type declarations producing a verbose description. Casts are accepted as well. The options are as follows: -o file Set the output destination to file. -V Print version information on standard output then exit. EXAMPLES
char *s; void (*signal(int sig, void (*func)(int)))(int); (const char *)s; (void (*)(int))signal_function; SEE ALSO
cundecl(1) STANDARDS
The cdecl utility is expected to be ANSI X3.159-1989 (``ANSI C89'') compatible. AUTHORS
Sandro Sigala <sandro@sigala.it> BSD
July 15, 2001 BSD
Man Page

5 More Discussions You Might Find Interesting

1. Programming

difference between int ** func() and int *& func()

What is the difference between int** func() and int*& func(). Can you please explain it with suitable example. Thanks, Devesh. (1 Reply)
Discussion started by: devesh
1 Replies

2. UNIX for Dummies Questions & Answers

porting programs with dcom to unix

Hi I have a rather large set of sas programs that i want to port to unix sas. All of these programs uses windows functionality somehow. For example win API calls and ole-dll:s via com and dcom. Now my company is moving to sas on unix, and we must port these apps (sas macros). So what Im... (3 Replies)
Discussion started by: iommi
3 Replies

3. Programming

c calling conventions

C calling convention we all know defines a way how the parameters are pushed onto the stack. My question is when and how does this C calling conventions matters to a user? When the user will have to bother about the calling conventions in his project? (5 Replies)
Discussion started by: rupeshkp728
5 Replies

4. Homework & Coursework Questions

Errors in C Code

For my programming class I need to write a program that reads a ground number and a power, calculates, and then prints the answer on screen. for this program the teacher makes me use pointers and different sub programs for the input output and calculation. my code is: /*Libraries*/... (2 Replies)
Discussion started by: metal005
2 Replies

5. Programming

Help me to understand strange 'typedef ... ' in some source...

Working on some source I've found some strange declaration in included header file. I am looking for someone's help to understand me that syntax's, as it is fine (it is compiled without any complain,) but for me it seems out of any sense! Acctually, it warning by CC compiler: " Warning: Implicit... (1 Reply)
Discussion started by: alex_5161
1 Replies