summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/c/hello.c
blob: 5849783c7d9895bf0b03493740fa1ae9ecda55f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

void HelloWorld(char* pString)
{
    printf("%s\n", pString);
} /* HelloWorld */

int main()
{
    HelloWorld("Hello world");
    
    return 0;
} /* main */