blob: bde48ee71165cb5878322f878e9804ece24a469f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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)
{
}
|