9.4. close()
函式原型
#include <unistd.h>
int close(int s);說明
傳回值
範例
s = socket(PF_INET, SOCK_DGRAM, 0);
.
.
.
// a whole lotta stuff...*BRRRONNNN!*
.
.
.
close(s); // 沒有多少,真的。參考
Last updated
#include <unistd.h>
int close(int s);s = socket(PF_INET, SOCK_DGRAM, 0);
.
.
.
// a whole lotta stuff...*BRRRONNNN!*
.
.
.
close(s); // 沒有多少,真的。Last updated