File indexing completed on 2024-05-05 03:57:37

0001 #include <stdio.h>
0002 
0003 typedef struct indent_result {
0004     int use_spaces;
0005     int indent_width;
0006 } indent_result_t;
0007 
0008 int main() {
0009     int i;
0010     indent_result_t ir;
0011     for (i = 0; i < 100; ++i) {
0012         if (i == 4)
0013             return ir.use_spaces;
0014         else
0015             return ir.indent_width;
0016     }
0017     return 0;
0018 }