Sha256: 681927eda1316ff4dfc7701b08f3d3f3785880bce6e43262a15dbdbaa7b1ba28

Contents?: true

Size: 336 Bytes

Versions: 8

Compression:

Stored size: 336 Bytes

Contents

#ifndef CMARK_ITERATOR_H
#define CMARK_ITERATOR_H

#ifdef __cplusplus
extern "C" {
#endif

#include "cmark.h"

typedef struct {
	cmark_event_type  ev_type;
	cmark_node       *node;
} cmark_iter_state;

struct cmark_iter {
	cmark_node       *root;
	cmark_iter_state  cur;
	cmark_iter_state  next;
};

#ifdef __cplusplus
}
#endif

#endif

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
commonmarker-0.3.0 ext/commonmarker/cmark/src/iterator.h
commonmarker-0.2.1 ext/commonmarker/cmark/src/iterator.h
commonmarker-0.2.0 ext/commonmarker/cmark/src/iterator.h
commonmarker-0.1.3 ext/commonmarker/cmark/src/iterator.h
commonmarker-0.1.2 ext/commonmarker/cmark/src/iterator.h
commonmarker-0.1.1 ext/commonmarker/cmark/src/iterator.h
commonmarker-0.1.0 ext/commonmarker/cmark/src/iterator.h
commonmarker-0.0.1 ext/commonmarker/cmark/src/iterator.h