原创 Linux編程中遇到的幾個函數

2008-6-14 16:16 3292 12 12 分类: 工程师职场

1.atoi函數


This function converts a given string to integer


int atoi(const char *sz);


returns the string's integer value


2.memset函數


set buffers to a specified character


memset{


      void *dest,//pointer to destination


     int c,// character to set


    size_t count // number of character


     }


return the value of dest


3. htonl /htons


 convert a u-long/u-short from host to TCP/IP network byte order,which is big-endian


u_long htonl{  u_long hostlong}


u_short htonl{  u_short hostlong}


4.fcntl 整理中

文章评论0条评论)

登录后参与讨论
我要评论
0
12
关闭 站长推荐上一条 /2 下一条