Hm, made func defs ANSI compliant.

git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@146 4cde692c-a291-49d1-8350-778aa11640f8
This commit is contained in:
jvr 2001-08-09 19:36:36 +00:00
parent 09f337befd
commit 93bde1287b

View File

@ -20,9 +20,7 @@ static char eexec_decrypt__doc__[] =
;
static PyObject *
eexec_decrypt(self, args)
PyObject *self; /* Not used */
PyObject *args;
eexec_decrypt(PyObject *self, PyObject *args)
{
PyObject *_res = NULL;
unsigned short int R;
@ -55,9 +53,7 @@ static char eexec_encrypt__doc__[] =
;
static PyObject *
eexec_encrypt(self, args)
PyObject *self; /* Not used */
PyObject *args;
eexec_encrypt(PyObject *self, PyObject *args)
{
PyObject *_res = NULL;
unsigned short int R;
@ -90,9 +86,7 @@ static char eexec_hexString__doc__[] =
;
static PyObject *
eexec_hexString(self, args)
PyObject *self; /* Not used */
PyObject *args;
eexec_hexString(PyObject *self, PyObject *args)
{
PyObject *_res = NULL;
unsigned char * inbuf;
@ -126,9 +120,7 @@ static char eexec_deHexString__doc__[] =
;
static PyObject *
eexec_deHexString(self, args)
PyObject *self; /* Not used */
PyObject *args;
eexec_deHexString(PyObject *self, PyObject *args)
{
PyObject *_res = NULL;
unsigned char * inbuf;