comparison third_party/wrk/src/units.h @ 178:94705b5986b3

[ThirdParty] Added WRK and luajit for load testing.
author MrJuneJune <me@mrjunejune.com>
date Thu, 22 Jan 2026 20:10:30 -0800
parents
children
comparison
equal deleted inserted replaced
177:24fe8ff94056 178:94705b5986b3
1 #ifndef UNITS_H
2 #define UNITS_H
3
4 char *format_binary(long double);
5 char *format_metric(long double);
6 char *format_time_us(long double);
7 char *format_time_s(long double);
8
9 int scan_metric(char *, uint64_t *);
10 int scan_time(char *, uint64_t *);
11
12 #endif /* UNITS_H */