| 132 | printf("error: seperate keywords by ; but do not have ; after the last keyword\n"); |
| 133 | } |
| 134 | void scan_proc_help(const char *s) |
| 135 | { |
| 136 | while(!feof(f)) |
| 137 | { |
| 138 | proc_help_lines++; |
| 139 | if (strstr(buf,"\";")!=NULL) break; |
| 140 | if (buf[0]=='{') break; |
| 141 | if (strstr(buf,"@")!=NULL) |
| 142 | { |
| 143 | proc_help_texinfo++; |
| 144 | buf[strlen(buf)-1]='\0'; |
| 145 | strcat(buf,"<<\n"); |
| 146 | printf("texinfo in proc help(%s): >>%s",s,buf); |
| 147 | } |
| 148 | get_next(); |
| 149 | } |
| 150 | } |
| 151 | void scan_info(int *l) |
| 152 | { |
| 153 | int have_LIBRARY=0; |