【C语言】需要学习的函数

1.getcwd

SYNOPSIS
       #include <unistd.h>
       char *getcwd(char *buf, size_t size);

DESCRIPTION
       These  functions  return  a  null-terminated string containing an absolute pathname that is the current working directory of the calling process.  The pathname is returned as the function result and via the argument buf, if present.
       The getcwd() function copies an absolute pathname of the current working directory to the array pointed to by buf, which is of length size.
功能:
     会将当前工作目录的绝对路径复制到参数buf所指的内存空间中,参数size为buf的空间大小.

2.ftok

NAME
       ftok - convert a pathname and a project identifier to a System V IPC key
SYNOPSIS
       #include <sys/types.h>
       #include <sys/ipc.h>
       key_t ftok(const char *pathname, int proj_id);
DESCRIPTION
       The  ftok() function uses the identity of the file named by the given pathname (which must refer to an existing, accessible file) and the least significant 8 bits of proj_id (which must be non-zero) to generate a key_t type System V IPC key, suitable for use with msgget(2), semget(2), or shmget(2).
       The resulting value is the same for all pathnames that name the same file, when the same value of proj_id is used.  The value returned should be different when the (simultaneously  existing)  files  or  the project IDs differ.
RETURN VALUE
       On success the generated key_t value is returned.  On failure -1 is returned, with errno indicating the error as for the stat(2) system call.
说明:
函数ftok把一个已存在的路径名和一个整数标识符转换成一个key_t值,称为IPC键值(也称IPC key键值)。

3. 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值