I have been trying to understand the revised csvgetline function in C from the chapter Interfaces of the book "The Practice of Programming". I have highlighted the code that doesn't make sense to me.
#include "csv.h"
enum { NOMEM = -2 }; /* out of memory signal */
static char* line = NULL; /* input chars */
static char* sline = NULL; /* line copy used by split */
static int maxline = 0; /* size of line[] and sline[] */
static char** field = NULL; /* field pointers */ // This is the problem!
static int maxfield = 0; /* size of field[] */
static int nfield = 0; /* number of fields in field[] */
static char fieldsep[] = ","; /* field separator chars */
static char* advquoted(char *);
static int split(void);
/* endofline: check for and consume \r, \n, \r\n, or EOF */
static int endofline(FILE *fin, int c)
{}
/* reset: set variables back to starting values */
static void reset(void)
{}
/* csvgetline: get one line, grow as needed */
/* sample input: "LU",86.25,"11/4/1998","2:19PM",+4.0625 */
char* csvgetline( FILE *fin )
{
int i, c;
char *newl, *news;
if (line == NULL) { /* allocate on first call */
maxline = maxfield = 1;
line = (char *) malloc(maxline);
sline = (char *) malloc(maxline);
field = (char **) malloc(maxfield*sizeof(field)); // This is the problem!
if (line == NULL || sline == NULL || field == NULL) {
reset();
return NULL; /* out of memory */
}
}
for (i=0; (c=getc(fin))!=EOF && !endofline(fin,c); i++) {
if (i >= maxline-1) { /* grow line */
maxline *= 2; /* double current size */
newl = (char *) realloc(line, maxline);
if (newl == NULL) {
reset();
return NULL;
}
line = newl;
news = (char *) realloc(sline, maxline);
if (news == NULL) {
reset();
return NULL;
}
sline = news;
}
line[i] = c;
}
line[i] = '\0';
if (split() == NOMEM) {
reset();
return NULL; /* out of memory */
}
return (c == EOF && i == 0) ? NULL : line;
}
/* split: split line into fields */
static int split(void)
{
char *p, **newf;
char *sepp; /* pointer to temporary separator character */
int sepc; /* temporary separator character */
nfield = 0;
if (line[0] == '\0')
return 0;
strcpy(sline, line);
p = sline;
do {
if (nfield >= maxfield) {
maxfield *= 2; /* double current size */
newf = (char **) realloc(field, maxfield * sizeof(field[0]));
if (newf == NULL)
return NOMEM;
field = newf;
}
if (*p == '"')
sepp = advquoted(++p); /* skip initial quote */
else
sepp = p + strcspn(p, fieldsep);
sepc = sepp[0];
printf("%d", sepp[0]); // Debug
sepp[0] = '\0'; /* terminate field */
field[nfield++] = p;
p = sepp + 1;
} while (sepc == ',');
return nfield;
}
/* advquoted: quoted field; return pointer to next separator */
static char *advquoted(char *p)
{}
/* csvfield: return pointer to n-th field */
char* csvfield(int n)
{
if (n < 0 || n >= nfield)
return NULL;
return field[n]; // This is the problem!
}
/* csvnfield: return number of fields */
int csvnfield(void)
{
return nfield;
}
/* csvtest main: test CSV library */
int main(void)
{
int i;
char *line;
while ((line = csvgetline(stdin)) != NULL) {
printf("line = `%s'\n", line);
for (i = 0; i < csvnfield(); i++)
printf("field[%d] = `%s'\n", i, **csvfield(i)**);
}
return 0;
}
What I can't figure out is the char** field which I believe is a pointer to an array of pointers to strings/character array/fields.
Therefore field[n] should contain pointer to the string i.e the address of the string and not the string itself. But this doesn't seem to be the case since when it is accessed in the printf() statement, the function csvfield(i) returns the value and not the pointer to the nth field.
I have browsed many websites trying to understand char ** but the information is very, very limited. One website said that char * is a pointer to a character array but char** is a pointer to pointer to char. Another website talks about char ** type being a scalar type. But I'm still fuzzy regarding this char **.
Can you please explain this to me?