File: sequence.h

package info (click to toggle)
rpy2 2.2.6-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 1,032 kB
  • sloc: ansic: 8,431; python: 6,451; makefile: 149
file content (14 lines) | stat: -rw-r--r-- 350 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _RPY_PRIVATE_SEQUENCE_H_
#define _RPY_PRIVATE_SEQUENCE_H_

#ifndef _RPY_RINTERFACE_MODULE_
#error sequence.h should not be included directly
#endif

static PySequenceMethods VectorSexp_sequenceMethods;


typedef int (* RPy_seqobjtosexpproc)(PyObject *, SEXP *);
typedef int (* RPy_iterobjtosexpproc)(PyObject *, Py_ssize_t, SEXP *);

#endif