Austin Schuh | 87dc7bb | 2018-10-29 21:53:23 -0700 | [diff] [blame] | 1 | #include "gflags/gflags.h" |
Brian Silverman | fbe79b8 | 2015-09-12 15:10:54 -0400 | [diff] [blame] | 2 | |
3 | DEFINE_int32(test_flag, 0, "Test command-line flag"); | ||||
4 | |||||
Philipp Schrader | 790cb54 | 2023-07-05 21:06:52 -0700 | [diff] [blame] | 5 | int main() { return FLAGS_test_flag; } |