Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
An excellent book to be reading! – Jonathan Leffler Jun 17 '11 at 15:25

1 Answer

You are right, char** can be consider as an array of pointers to strings/character array/fields. How did printf the csvfield(i)? If you did it with format "...%s..." sure it will output the string value, if you want the pointer address, use the format "...%p...".

share|improve this answer
SO instead of the printf statement above, I use printf("field[%d] = `%s'\n", i, *field[n]) will it give me the same answer? – razi Jun 17 '11 at 15:27
<code>*field[n]</code> will get the first character value of field[n], and can't be used <code>%s</code> to print, <code>%c</code> instead. Not test, try it yourself. – cxa Jun 18 '11 at 1:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.