More defs for Darwin.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@10791 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2001-08-28 18:45:17 +00:00
parent 210a1351d0
commit 0154d18d92
7 changed files with 83 additions and 4 deletions

View file

@ -577,6 +577,22 @@ method_types_get_next_argument (arglist_t argf, const char **type)
}
}
char*
method_types_get_first_argument (struct objc_method* m,
arglist_t argframe,
const char** type)
{
*type = m->method_types;
return method_get_next_argument (argframe, type);
}
int
method_types_get_sizeof_arguments (struct objc_method* mth)
{
const char* type = objc_skip_typespec (mth->method_types);
return atoi (type);
}
/* mframe_dissect_call()