a亚洲精品_精品国产91乱码一区二区三区_亚洲精品在线免费观看视频_欧美日韩亚洲国产综合_久久久久久久久久久成人_在线区

首頁 > 編程 > C > 正文

基于getline()函數的深入理解

2020-01-26 16:08:08
字體:
來源:轉載
供稿:網友

我在網上搜了半天getline()函數,大多針對C++的,重載函數比較多,云里霧里的,而且沒有實例,反正就是沒有自己所需要的getline()函數。所以,自己在Linux下man了一把,并做了測試。getline()函數的功能是從文件中獲取行信息,即每次讀取一行信息。

因為我使用getline()函數的目的是獲取本地網卡信息,即eth0的信息,從而判斷啟動機子時是否查了網線(本來可以從驅動里做,但應用層可以搞定,就不想多做處理了,諒解)。

//函數原型
#define _GNU_SOURCE
#include <stdio.h>
      ssize_t getline(char **lineptr, size_t *n, FILE *stream);
      ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE*stream);
[root@localhost for_test]# cat dev
Inter-|   Receive                                                | Transmit
 face |bytes   packets errs drop fifo frame compressed multicast|bytes    packets errs drop fifo colls carriercompressed
   lo:       0       0   0    0    0    0          0         0        0      0    0    0   0     0       0         0
 eth0:  53311     230    0    0   0     0          0        0     5370      33   0    0    0    0       0          0
[root@localhost for_test]# cat eth0_dev.c

復制代碼 代碼如下:

#include <stdio.h>
#include <string.h>
int main(void)
{
 FILE *fp = NULL;
    int cnt = -1;
    int len = 0;
 char buf1[16] = {0}, buf2[16] = {0}, buf3[16] = {0};
    char *line = NULL;
    char *pstr = NULL; 
 fp = fopen("./dev", "rb");
 if(NULL == fp)
 {
  printf("open /proc/net/dev err!/n");
  return -1;
 }
    while(-1 != (cnt = getline(&line, &len, fp)))//讀取行信息,'/n'為換行標志
    {
        pstr = strstr(line, "eth0");//查找改行中是否有"eth0"的字符串
        if(NULL != pstr)
        {
   //printf("%s/n", pstr);
   sscanf(pstr, "%s/t%s/t%s", buf1, buf2, buf3);
   printf("buf1:%s  buf2:%s  buf3:%s/n", buf1, buf2, buf3);
   break;
        }
    }
    //確保空間的釋放
    if(line)
    {
        free(line);
    }
    fclose(fp);
 return 0;
}

[root@localhost for_test]#gcc eth0_dev.c
[root@localhost for_test]# ./a.out
buf1:eth0:  buf2:53311 buf3:230
[root@localhost for_test]# man getline
復制代碼 代碼如下:

DESCRIPTION
       getline()  reads  an entire line from stream, storing the address of the buffer containing the text into *lineptr.  The buffer is null-
       terminated and includes the newline character, if one was found.
       If *lineptr is NULL, then getline() will allocate a buffer for storing the line, which should be freed by the user  program.   Alterna-
       tively,  before calling getline(), *lineptr can contain a pointer to a malloc()-allocated buffer *n bytes in size. If the buffer is not
       large enough to hold the line, getline() resizes it with realloc(), updating *lineptr and *n as necessary. In either case,  on  a  suc-
       cessful call, *lineptr and *n will be updated to reflect the buffer address and allocated size respectively.
       getdelim()  works  like  getline(), except a line delimiter other than newline can be specified as the delimiter argument. As with get-
       line(), a delimiter character is not added if one was not present in the input before end of file was reached.
RETURN VALUE
       On success, getline() and getdelim() return the number of characters read, including the delimiter character,  but  not  including  the
       terminating null byte. This value can be used to handle embedded null bytes in the line read.
       Both functions return -1  on failure to read a line (including end of file condition).
ERRORS
       EINVAL Bad parameters (n or lineptr is NULL, or stream is not valid).
EXAMPLE
       #define _GNU_SOURCE
       #include <stdio.h>
       #include <stdlib.h>
       int main(void)
       {
            FILE * fp;
            char * line = NULL;
            size_t len = 0;
            ssize_t read;
            fp = fopen("/etc/motd", "r");
            if (fp == NULL)
                 exit(EXIT_FAILURE);
            while ((read = getline(&line, &len, fp)) != -1) {
                 printf("Retrieved line of length %zu :/n", read);
                 printf("%s", line);
            }
            if (line)
                 free(line);
            return EXIT_SUCCESS;
       }
CONFORMING TO
       Both getline() and getdelim() are GNU extensions.  They are available since libc 4.6.27.

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 欧美视频a | 欧美久久成人 | 欧美 日韩 国产 在线 | 亚洲国产精品一区二区久久 | 国产女人爽到高潮免费视频 | 成人一级网站 | 久久国产精品免费一区二区三区 | 欧美日韩一区二区视频在线观看 | 午夜寂寞福利视频 | 在线成人| 成人久久 | 91综合视频在线观看 | 在线免费看黄视频 | 国产精品永久免费视频 | 国产精品久久久久久久久免费丝袜 | 欧美a在线| 国产免费看av大片的网站吃奶 | a级淫片 | 成人亚洲视频 | 很黄很黄的网站 | 日韩在线一区二区 | a在线v| 欧美精品黄 | 国产成人精品在线 | 成人欧美一区二区三区在线观看 | 成人免费视频网站在线看 | 一级欧美 | cao视频| 日日躁夜夜躁狠狠躁aⅴ蜜 成人免费在线观看 | 色网站免费看 | 草草在线观看 | 高清一区二区三区视频 | 精品成人 | 欧美专区在线 | 草草电影| 久久精品| 国产精品久久久免费看 | 中文精品在线观看 | 日韩中文字幕电影在线观看 | www国产亚洲精品久久网站 | 国产高清一区二区三区 |