mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
10 lines
227 B
C
10 lines
227 B
C
/* 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 *));
|