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 | |||||
5 | int main() { | ||||
6 | return FLAGS_test_flag; | ||||
7 | } |