Re: implementing (...) function
Greg Ewing <[email protected]>
| Newsgroups | gmane.comp.python.pyrex |
|---|---|
| Message-ID | <[email protected]> |
Georg Grabler wrote: > I was wondering how to wrap a function like > > int SYMEXPORT logaction(char *fmt, ...) Pyrex understands varargs notation in external function declarations, so you should be able to declare it just like that. -- Greg