You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
501 B
16 lines
501 B
void (*foo)(int);
|
|
static bar(void (*foo)(int))
|
|
{
|
|
}
|
|
|
|
bool (*comp_func)(const TypeA*const a, const TypeB& value) = NULL;
|
|
static foo(bool (*comp_func)(const TypeA*const a, const TypeB& value));
|
|
static foo(bool (*comp_func)(const TypeA*const a, const TypeB& value) = NULL)
|
|
{
|
|
}
|
|
|
|
void qsort(void *base, size_t nmemb, size_t size, int(*compar)(const TypeA* lhs, const TypeB& rhs));
|
|
void qsort(void *base, size_t nmemb, size_t size, int(*compar)(const TypeA* lhs, const TypeB& rhs) = NULL)
|
|
{
|
|
}
|