回應《C語言中typedef用法的疑惑》

空軍發表於2014-02-02

The C Programming Language (Second Edition) SECTION 6.7 Typedef(第147頁)舉例說明了如何使用 typedef 定義函式指標:

For example,

typedef int (*PFI)(char *, char*);

creates the type PFI, for “pointer to function (of two char * arguments) returning int,” which can be used in contexts like

PFI strcmp, numcmp;

不存在 Mr.P《C語言中typedef用法的疑惑》所說的問題。

相關文章