ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/libstatgrab/tools.c
Revision: 1.3
Committed: Fri Mar 7 11:56:44 2003 UTC (21 years, 2 months ago) by pajs
Content type: text/plain
Branch: MAIN
CVS Tags: LIBSTATGRAB_0_3_4, LIBSTATGRAB_0_3_3, LIBSTATGRAB_0_3_2, LIBSTATGRAB_0_3_1, LIBSTATGRAB_0_3
Changes since 1.2: +23 -0 lines
Log Message:
Made network stats work with linux.

File Contents

# User Rev Content
1 pajs 1.1 #include <stdio.h>
2     #include <string.h>
3 pajs 1.3 #include <stdlib.h>
4     #include <sys/types.h>
5     #include <regex.h>
6 pajs 1.1
7     char *f_read_line(FILE *f, const char *string){
8     /* Max line length. 8k should be more than enough */
9     static char line[8192];
10    
11 pajs 1.2 while((fgets(line, sizeof(line), f))!=NULL){
12 pajs 1.1 if(strncmp(string, line, strlen(string))==0){
13     return line;
14     }
15     }
16    
17     return NULL;
18 pajs 1.3 }
19    
20     char *get_string_match(char *line, regmatch_t *match){
21     int len=match->rm_eo - match->rm_so;
22     char *match_string=malloc(len+1);
23    
24     match_string=strncpy(match_string, line+match->rm_so, len);
25     match_string[len]='\0';
26    
27     return match_string;
28     }
29    
30     long long get_ll_match(char *line, regmatch_t *match){
31     char *ptr;
32     long long num;
33    
34     ptr=line+match->rm_so;
35     num=atoll(ptr);
36    
37     return num;
38 pajs 1.1 }