本文主要是介绍常用函数两个C函数 pnp_log basename,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
不使用 printf的时候用
#include <unistd.h>
#include <fcntl.h>
static void pnp_log(const char *s)
{
int fd,size;
fd=open("/tmp/pnp_check",O_WRONLY|O_APPEND|O_CREAT);
write(fd,s,strlen(s)+1);
write(fd," \n",2);
close(fd);
}
只留文件名
static char * (char const *path)
{
char *s = strrchr(path, '/');
if(s==NULL) {
return strdup(path);
} else {
return strdup(s + 1);
}
}
这篇关于常用函数两个C函数 pnp_log basename的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!