Sha256: ade496849fabb236b7236a8481e8c43425b8396c43ddd9f908ff1fb4e8604d2a

Contents?: true

Size: 346 Bytes

Versions: 4

Compression:

Stored size: 346 Bytes

Contents

#ifndef _BAMFCSV_EXT_H
#define _BAMFCSV_EXT_H

#include <ruby/ruby.h>

VALUE BAMFCSV_module;
VALUE BAMFCSV_MalformedCSVError_class;

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

4 entries across 4 versions & 1 rubygems

Version Path
bamfcsv-0.1.3 ext/bamfcsv/bamfcsv_ext.h
bamfcsv-0.1.2 ext/bamfcsv/bamfcsv_ext.h
bamfcsv-0.1.1 ext/bamfcsv/bamfcsv_ext.h
bamfcsv-0.1.0 ext/bamfcsv/bamfcsv_ext.h