#include <string.h>#include <stdio.h>#include "analyse_define.h"#include "analyse_print.h"#include "analyse_string.h"#include "analyse_memory.h"#include "analyse_getall.h"Go to the source code of this file.
Functions | |
| void | analyse_fitline (char *line) |
| int | analyse_getint (int *x, int ncount, char *line) |
| int | analyse_getdouble (double *x, int ncount, char *line) |
| int | analyse_getstring (char *str, int ncount, char *line) |
| int | analyse_getline (char line[], FILE *infile, char *infilename, int *linecount) |
| int | analyse_getline_with_dollars (char line[], FILE *infile, char *infilename, int *linecount) |
| int | analyse_getcommentline (char *comment, FILE *infile, char *infilename, int *linecount) |
| int | analyse_getlist_of_int (int *nb_elt, int **elt, FILE *infile, char *infilename, int *linecount) |
| int | analyse_getlist_of_char (int *nb_elt, char ***elt, FILE *infile, char *infilename, int *linecount) |
| int | analyse_getlist_of_char_2 (int *nb_elt, char ***elt, FILE *infile, char *infilename, int *linecount) |
| int | analyse_getkey (int pos, char *line, char *name) |
| int | analyse_getsize_of_enum (int *nb_line, int *nb_dataline, FILE *infile, char *infilename, int *linecount) |
| void analyse_fitline | ( | char * | line | ) |
Definition at line 43 of file analyse_getall.c.
| int analyse_getcommentline | ( | char * | comment, |
| FILE * | infile, | ||
| char * | infilename, | ||
| int * | linecount ) |
Definition at line 162 of file analyse_getall.c.
| int analyse_getdouble | ( | double * | x, |
| int | ncount, | ||
| char * | line ) |
Definition at line 82 of file analyse_getall.c.
| int analyse_getint | ( | int * | x, |
| int | ncount, | ||
| char * | line ) |
Definition at line 62 of file analyse_getall.c.
| int analyse_getkey | ( | int | pos, |
| char * | line, | ||
| char * | name ) |
Definition at line 501 of file analyse_getall.c.
| int analyse_getline | ( | char | line[], |
| FILE * | infile, | ||
| char * | infilename, | ||
| int * | linecount ) |
Definition at line 116 of file analyse_getall.c.
| int analyse_getline_with_dollars | ( | char | line[], |
| FILE * | infile, | ||
| char * | infilename, | ||
| int * | linecount ) |
Definition at line 139 of file analyse_getall.c.
| int analyse_getlist_of_char | ( | int * | nb_elt, |
| char *** | elt, | ||
| FILE * | infile, | ||
| char * | infilename, | ||
| int * | linecount ) |
Definition at line 299 of file analyse_getall.c.
| int analyse_getlist_of_char_2 | ( | int * | nb_elt, |
| char *** | elt, | ||
| FILE * | infile, | ||
| char * | infilename, | ||
| int * | linecount ) |
Definition at line 396 of file analyse_getall.c.
| int analyse_getlist_of_int | ( | int * | nb_elt, |
| int ** | elt, | ||
| FILE * | infile, | ||
| char * | infilename, | ||
| int * | linecount ) |
Definition at line 205 of file analyse_getall.c.
| int analyse_getsize_of_enum | ( | int * | nb_line, |
| int * | nb_dataline, | ||
| FILE * | infile, | ||
| char * | infilename, | ||
| int * | linecount ) |
Definition at line 538 of file analyse_getall.c.
| int analyse_getstring | ( | char * | str, |
| int | ncount, | ||
| char * | line ) |
Definition at line 104 of file analyse_getall.c.