summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cpp/UNI-21509.cpp
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)
{
}