• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "foo.h"
2 #include <cstdio>
3 
4 struct Foo
5 {
6 char *ptr;
7 };
8 
main()9 void main() {
10   printf("hello, clang format!");
11 }
12