Sha256: 30c693e066b494c44e67ab7d7c34fca878ae5a8f77f442b083490b609b7f45bc

Contents?: true

Size: 260 Bytes

Versions: 2

Compression:

Stored size: 260 Bytes

Contents

#ifndef _BAMFCSV_EXT_H
#define _BAMFCSV_EXT_H

struct s_Row {
  struct s_Cell *first_cell;
  struct s_Row *next_row;
  int cell_count;
};

struct s_Cell {
  char *start;
  int len;
  int has_quotes;
  struct s_Cell *next_cell;
};

void Init_bamfcsv();

#endif

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bamfcsv-0.0.2 ext/bamfcsv/bamfcsv_ext.h
bamfcsv-0.0.1 ext/bamfcsv/bamfcsv_ext.h