| 2882 | |
| 2883 | |
| 2884 | static void blr_indent(gds_ctl* control, SSHORT level) |
| 2885 | { |
| 2886 | /************************************** |
| 2887 | * |
| 2888 | * b l r _ i n d e n t |
| 2889 | * |
| 2890 | ************************************** |
| 2891 | * |
| 2892 | * Functional description |
| 2893 | * Indent for pretty printing. |
| 2894 | * |
| 2895 | **************************************/ |
| 2896 | |
| 2897 | level *= 3; |
| 2898 | while (--level >= 0) |
| 2899 | control->ctl_string += ' '; |
| 2900 | } |
| 2901 | |
| 2902 | |
| 2903 |