Subversion Repositories wimsdev

Rev

Rev 10 | Rev 7673 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10 Rev 3842
Line 231... Line 231...
231
    if(!trusted_module()) {abt: *p=0; return;}
231
    if(!trusted_module()) {abt: *p=0; return;}
232
    p1=find_word_start(p); p2=find_word_end(p1);
232
    p1=find_word_start(p); p2=find_word_end(p1);
233
    if(*p2==0) goto abt;
233
    if(*p2==0) goto abt;
234
    *p2++=0; p2=find_word_start(p2);
234
    *p2++=0; p2=find_word_start(p2);
235
    t=atoi(p1);
235
    t=atoi(p1);
236
    if(exam_depcheck(p2,t)) p1="yes";
236
    snprintf(p,MAX_LINELEN, exam_depcheck(p2,t)? "yes" : "no");
237
    else p1="no";
-
 
238
    snprintf(p,MAX_LINELEN,p1);
-
 
239
}
237
}
240
 
238