[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.4 and 1.5

version 1.4, 2005/04/05 13:12:06 version 1.5, 2005/04/06 05:08:11
Line 1 
Line 1 
 /*  $OpenXM: OpenXM/src/util/oxgentexi.c,v 1.3 2005/04/04 12:38:32 takayama Exp $ */  /*  $OpenXM: OpenXM/src/util/oxgentexi.c,v 1.4 2005/04/05 13:12:06 takayama Exp $ */
   
 #include <stdio.h>  #include <stdio.h>
 int Debug = 0;  int Debug = 0;
Line 379  struct item *getItem() {
Line 379  struct item *getItem() {
       do {        do {
         pOld = p;          pOld = p;
         p = nextToken(key,LIMIT);          p = nextToken(key,LIMIT);
         /* printf("%s\n",key); */          /* printf("key=%s\n",key); */
         if (key[strlen(key)-1] == ':') break; /* Next keyword. */          if (key[strlen(key)-1] == ':') {
             pOld = p-strlen(key);
             break; /* Next keyword. */
           }
       }while (p >= 0);        }while (p >= 0);
       if (strcmp(key2,"description:") == 0) {        if (strcmp(key2,"description:") == 0) {
         it->description = str2(&(S[pp]),pOld-pp);          it->description = str2(&(S[pp]),pOld-pp);
Line 512  printTexi_common(FILE *fp,struct item *it) {
Line 515  printTexi_common(FILE *fp,struct item *it) {
 printTexi0(FILE *fp, struct item *it) {  printTexi0(FILE *fp, struct item *it) {
   int i;    int i;
   
   fprintf(fp,"@c DO NOT EDIT THIS FILE. Generated by gentexi0.\n");    fprintf(fp,"@c DO NOT EDIT THIS FILE. Generated by gentexi for asir function item.\n");
   if (it == NULL) {    if (it == NULL) {
     fprintf(fp,"@c item is NULL.\n");      fprintf(fp,"@c item is NULL.\n");
     return ;      return ;
Line 586  printTexi1(FILE *fp, struct item *it) {
Line 589  printTexi1(FILE *fp, struct item *it) {
   int i;    int i;
   /* For  it->type == 1 */    /* For  it->type == 1 */
   
   fprintf(fp,"@c DO NOT EDIT THIS FILE. Generated by gentexi1.\n");    fprintf(fp,"@c DO NOT EDIT THIS FILE. Generated by gentexi for verbose item.\n");
   if (it == NULL) {    if (it == NULL) {
     fprintf(fp,"@c item is NULL.\n");      fprintf(fp,"@c item is NULL.\n");
     return ;      return ;

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

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