- 论坛徽章:
- 0
|
回复 9# g_hk - #include <stdlib.h>
- #include <stdio.h>
- #include <fcntl.h>
- #define MyOpen(s,...) _open(s, __VA_ARGS__, 0);
- int _open(char* name, int flag, int mode, ...)
- {
- printf("the mode is %d",mode);
- return open(name,flag,mode);
- }
- /*
- * === FUNCTION ======================================================================
- * Name: main
- * Description:
- * =====================================================================================
- */
- int main ( int argc, char *argv[] )
- {
- int fd = 0;
- fd = MyOpen("test", O_CREAT | O_RDWR);
- close(fd);
- fd = MyOpen("test2", O_CREAT | O_RDWR, 0x100);
- close(fd);
- return 0;
- }
复制代码 不知道这样是否满足你的需要?个人认为既然要封装,就是要给别人提供接口,就是制定规则,你完全可以定义必须传递三个参数,而不必一定要纠结与标准库一致的吧!
纠结的人啊。。。
#define MyOpen(s,...) _open(s, __VA_ARGS__, 0); 这里面的0是默认mode设置。可修改。
可参考以下资源:
http://stackoverflow.com/questio ... n-a-function-with-c |
|