Lines Matching defs:str
342 * str - string from Systems/Devices/Config file,
346 * str - the , (if present) will be replaced with NULLCHAR
352 getProto(char *save, char *str)
357 if ((p = strchr(str, ',')) != NULL) {
412 * expect(str, fn) look for expected string w/ possible special chars
413 * char *str;
422 expect(char *str, int fn)
429 for (sptr = str; *sptr; sptr++) {
461 * expect_str(str, fn) look for expected string, w/ no special chars
470 expect_str(char *str, int fn)
480 for (c = 0; (kr = str[c]) != 0; c++)
490 if (EQUALS(str, "\"\"")) {
494 if (*str == '\0')
500 while (notin(str, rdvec)) {
563 * sendthem(str, fn, phstr1, phstr2) send line of chat sequence
564 * char *str, *phstr;
577 sendthem(char *str, int fn, char *phstr1, char *phstr2)
586 if (PREFIX("BREAK", str)) {
593 if (EQUALS(str, "EOT")) {
599 if (EQUALS(str, "\"\"")) {
601 str += 2;
606 for (sptr = str; *sptr; sptr++) {