MCPcopy Create free account
hub / github.com/Singular/Singular / scan_proc_help

Function scan_proc_help

Singular/checklibs.c:134–150  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

132 printf("error: seperate keywords by ; but do not have ; after the last keyword\n");
133}
134void 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}
151void scan_info(int *l)
152{
153 int have_LIBRARY=0;

Callers 1

mainFunction · 0.85

Calls 1

get_nextFunction · 0.85

Tested by

no test coverage detected