我希望抑制函数smbc_opendir()的默认输出,并且只使用 printf 打印。
gcc 文件名.c -lsmbclient
#include <libsmbclient.h>
#include <stdio.h>
void auth_fn()
{
}
int main(int argc,char* argv[])
{
int dirHandle;
if(smbc_init(auth_fn, 10)) /* Initialize things */
{
return 0;
}
dirHandle= smbc_opendir(argv[1]); /* Argument is smb://<ip-address>/ */
/* Just display value of dirHandle in output and nothing else */
printf("%d",dirHandle);
return 0;
}