| 1381 | } |
| 1382 | |
| 1383 | staticfn char * |
| 1384 | promptsep(char *buf, int num_post_attribs) |
| 1385 | { |
| 1386 | const char *conjuct = "and "; |
| 1387 | |
| 1388 | if (num_post_attribs > 1 && gr.role_post_attribs < num_post_attribs |
| 1389 | && gr.role_post_attribs > 1) |
| 1390 | Strcat(buf, ","); |
| 1391 | Strcat(buf, " "); |
| 1392 | --gr.role_post_attribs; |
| 1393 | if (!gr.role_post_attribs && num_post_attribs > 1) |
| 1394 | Strcat(buf, conjuct); |
| 1395 | return buf; |
| 1396 | } |
| 1397 | |
| 1398 | staticfn int |
| 1399 | role_gendercount(int rolenum) |
no outgoing calls
no test coverage detected