diff options
| author | amelia squires <[email protected]> | 2025-09-30 18:10:02 -0500 |
|---|---|---|
| committer | amelia squires <[email protected]> | 2025-09-30 18:10:02 -0500 |
| commit | a67dc94484cf9869793fc1861914b800a6559a74 (patch) | |
| tree | 68e9a016380776a6a6d90159722d1514756a4929 /src/util.h | |
| parent | 795284d3b173473003129882739f371f37059adb (diff) | |
fix indentation!!!
Diffstat (limited to 'src/util.h')
| -rw-r--r-- | src/util.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -26,10 +26,10 @@ #define lesser(A,B) ((A)>(B)?(B):(A)) #define inter(V,I) (I * ceil((double)V / I)) #define time_start(name)\ - clock_t _begin##name = clock(); + clock_t _begin##name = clock(); #define time_end(desc, name)\ - clock_t _end##name = clock();\ - printf("%s took %f\n",desc, (double)(_end##name - _begin##name) / CLOCKS_PER_SEC); + clock_t _end##name = clock();\ + printf("%s took %f\n",desc, (double)(_end##name - _begin##name) / CLOCKS_PER_SEC); int gen_parse(char*,int, parray_t**); |
