-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex-test.cpp
More file actions
41 lines (38 loc) · 826 Bytes
/
ex-test.cpp
File metadata and controls
41 lines (38 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <string>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "expand.h"
void
usage( )
{
printf( "Usage: ex-test input-file conversion-file\n" );
exit( 1 );
}
int
main( int argc, char **argv )
{
if ( argc != 3 ) {
usage( );
}
NameExpand exp( argv[ 2 ] );
FILE *fp = fopen( argv[ 1 ], "r" );
if ( !fp ) {
usage( );
}
char buf[ 1024 ];
while ( fgets( buf, sizeof( buf ), fp )) {
if ( buf[ 0 ] && buf[ 0 ] != '\n' ) {
strtok( buf, "\n" );
for ( int i = 0; i < 1000; i++ ) {
string str;
if ( exp.expand( str, buf )) {
return( 1 );
}
printf( "%s\n", str.c_str( ));
}
}
}
fclose( fp );
return( 0 );
}