chiark / gitweb /
Buffer sharing and subbuffers.
[catacomb-python] / gf.c
CommitLineData
d7ab1bab 1/* -*-c-*-
2 *
3 * $Id$
4 *
5 * Binary polynomial arithmetic
6 *
7 * (c) 2004 Straylight/Edgeware
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of the Python interface to Catacomb.
13 *
14 * Catacomb/Python is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * Catacomb/Python is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with Catacomb/Python; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28
29/*----- Revision history --------------------------------------------------*
30 *
31 * $Log$
32 */
33
34/*----- Header files ------------------------------------------------------*/
35
36#include "catacomb-python.h"
37
38/*----- Main code ---------------------------------------------------------*/
39
40PyTypeObject *gf_pytype;
41
42PyObject *gf_pywrap(mp *x)
43{
44 mp_pyobj *z = PyObject_New(mp_pyobj, mp_pytype);
45 z->x = x;
46 return ((PyObject *)z);
47}
48
49mp *getgf(PyObject *o)
50{
51 mp *x = 0;
52 if ((x = tomp(o)) == 0) {
53 PyErr_Format(PyExc_TypeError, "can't convert %.100s to gf",
54 o->ob_type->tp_name);
55 }
56 return (x);
57}
58
59
60
61/*----- That's all, folks -------------------------------------------------*/