forked from civetweb/civetweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
format.bat
executable file
·46 lines (40 loc) · 1.43 KB
/
format.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/sh
clang-format -i src/civetweb.c
clang-format -i src/main.c
clang-format -i src/CivetServer.cpp
clang-format -i src/civetweb_private_lua.h
clang-format -i src/md5.inl
clang-format -i src/sha1.inl
clang-format -i src/mod_lua.inl
clang-format -i src/mod_lua_shared.inl
clang-format -i src/mod_duktape.inl
clang-format -i src/mod_zlib.inl
clang-format -i src/openssl_dl.inl
clang-format -i src/timer.inl
clang-format -i src/handle_form.inl
clang-format -i src/response.inl
clang-format -i src/http2.inl
clang-format -i src/mod_mbedtls.inl
clang-format -i src/third_party/civetweb_lua.h
clang-format -i include/civetweb.h
clang-format -i include/CivetServer.h
clang-format -i unittest/public_func.h
clang-format -i unittest/public_func.c
clang-format -i unittest/public_server.h
clang-format -i unittest/public_server.c
clang-format -i unittest/private.h
clang-format -i unittest/private.c
clang-format -i unittest/private_exe.h
clang-format -i unittest/private_exe.c
clang-format -i unittest/shared.h
clang-format -i unittest/shared.c
clang-format -i unittest/timertest.h
clang-format -i unittest/timertest.c
clang-format -i unittest/civetweb_check.h
clang-format -i unittest/main.c
clang-format -i fuzztest/fuzzmain.c
clang-format -i examples/embedded_c/embedded_c.c
clang-format -i examples/rest/rest.c
clang-format -i examples/client/client.c
clang-format -i examples/embed_certificate/ec_example.c
clang-format -i examples/ws_server/ws_server.c