cpython/Include/modsupport.h

10 lines
227 B
C
Raw Normal View History

1990-10-14 12:07:46 +00:00
/* Module support interface */
struct methodlist {
char *ml_name;
method ml_meth;
};
extern object *findmethod PROTO((struct methodlist *, object *, char *));
extern object *initmodule PROTO((char *, struct methodlist *));