| 78 | } |
| 79 | |
| 80 | void Padding(_In_ int pad) |
| 81 | /*++ |
| 82 | |
| 83 | Routine Description: |
| 84 | |
| 85 | Insert padding into line before text |
| 86 | |
| 87 | Arguments: |
| 88 | |
| 89 | pad - number of padding tabs to insert |
| 90 | |
| 91 | Return Value: |
| 92 | |
| 93 | none |
| 94 | |
| 95 | --*/ |
| 96 | { |
| 97 | int c; |
| 98 | |
| 99 | for(c=0;c<pad;c++) { |
| 100 | _fputts(TEXT(" "), stdout); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | |
| 105 | void Usage(_In_ LPCTSTR BaseName) |
no outgoing calls
no test coverage detected