Modified to use .txt instead of .doc

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@56 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2000-01-12 04:49:25 +00:00
commit c7bcbe6540

View file

@ -308,7 +308,7 @@ void ASCII::separator() {
void ASCII::init(char *filename) {
char f[256];
sprintf(f,"%s.doc",filename);
sprintf(f,"%s.txt",filename);
sprintf(fn,"%s",filename);
f_doc = fopen(f,"w");
if (f_doc == NULL) {
@ -328,7 +328,7 @@ void ASCII::close(void) {
fclose(f_doc);
if (Verbose)
fprintf(stderr,"Documentation written to %s.doc\n", fn);
fprintf(stderr,"Documentation written to %s.txt\n", fn);
}