[BACK]Return to oxgentexi.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / util

Diff for /OpenXM/src/util/oxgentexi.c between version 1.11 and 1.14

version 1.11, 2005/06/15 02:38:01 version 1.14, 2005/08/15 16:28:59
Line 1 
Line 1 
 /*  $OpenXM: OpenXM/src/util/oxgentexi.c,v 1.10 2005/05/04 22:02:08 takayama Exp $ */  /*  $OpenXM: OpenXM/src/util/oxgentexi.c,v 1.13 2005/07/21 11:29:16 takayama Exp $ */
   
 #include <stdio.h>  #include <stdio.h>
   #include <stdlib.h>
   #include <string.h>
 int Debug = 0;  int Debug = 0;
 #define VMAX 20  #define VMAX 20
 #define LIMIT   65536  #define LIMIT   65536
Line 170  struct item * newItem(){
Line 172  struct item * newItem(){
     fprintf(stderr,"newItem: No more memory.\n");      fprintf(stderr,"newItem: No more memory.\n");
     exit(20);      exit(20);
   }    }
   a->argc = 0; a->optc = 0; a->refc=0; a->examplec = 0;    memset(a, 0, sizeof(struct item));
   a->type=0;  
   a->category = a->category2 = a->name = a->shortDescription  
     = a->description = a->author = a->algorithm = a->sortKey = NULL;  
   return a;    return a;
 }  }
   
Line 640  printTexi1(FILE *fp, struct item *it) {
Line 639  printTexi1(FILE *fp, struct item *it) {
   
 outputExample(FILE *fp,char *s) {  outputExample(FILE *fp,char *s) {
   int i;    int i;
     /* Remove unnecessary spaces at the tail. */
     for (i=strlen(s)-1; i>=0; i--) {
           if (s[i] == '\n') break;
           else if (s[i] <= ' ') {s[i] = 0;}
           else break;
     }
   for (i=0; s[i] != 0; i++) {    for (i=0; s[i] != 0; i++) {
         if (s[i] == '@') {          if (s[i] == '@') {
           if (s[i+1] == '{') {fprintf(fp,"%s","@{"); i += 1;}            if (s[i+1] == '{') {fprintf(fp,"%s","@{"); i += 1;}

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.14

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>