blob: 5156cabbf2d263aec5c3d4719fb88f7d63da2d13 (
plain)
1
2
3
4
5
6
7
8
9
|
typedef struct objc_method_list {
struct objc_method_list* method_next; /* This variable is used to link
a method list to another. It
is a singly linked list. */
int method_count; /* Number of methods defined in
this structure. */
Method method_list[1]; /* Variable length
structure. */
} MethodList, *MethodList_t;
|