cdecl

cdecl

Keyword used in C programming, which causes the compiler to generate object code for a function or subroutine, such that parameters are placed on the stack in right-to-left order, and the calling routine clears the stack after control returns from a called function or subroutine. This is the default for C programs. Contrast this with the pascal keyword.


[Back: byte]
[Next: CD-ROM]