s                  70 anacron/readtab.c conv2int(const char *s)
s                  77 anacron/readtab.c     l = strtol(s, NULL, 10);
s                 105 anacron/runjob.c xputenv(const char *s)
s                 112 anacron/runjob.c     if (s == NULL) {
s                 116 anacron/runjob.c     eq_ptr = strchr(s, '=');
s                 121 anacron/runjob.c     eq_index = (size_t) (eq_ptr - s);
s                 128 anacron/runjob.c     val = malloc((strlen(s) - eq_index) * sizeof(char));
s                 133 anacron/runjob.c     strncpy(name, s, eq_index);
s                 135 anacron/runjob.c     strcpy(val, s + eq_index + 1);
s                 587 src/do_command.c static int safe_p(const char *usernm, const char *s) {
s                 592 src/do_command.c 	for (t = s, first = 1; (ch = *t++) != '\0'; first = 0) {
s                 596 src/do_command.c 		log_it(usernm, getpid(), "UNSAFE", s, 0);
s                 146 src/misc.c     size_t strdtb(char *s) {
s                 147 src/misc.c     	char *x = s;
s                 159 src/misc.c     	} while (x >= s && isspace((unsigned char) *x));
s                 169 src/misc.c     	return ((size_t)(x - s));
s                 626 src/misc.c     char *first_word(const char *s, const char *t) {
s                 637 src/misc.c     	while (*s && (NULL != strchr(t, *s))) {
s                 638 src/misc.c     		s++;
s                 642 src/misc.c     	while (*s && (NULL == strchr(t, *s)) && (rp < &rb[MAX_TEMPSTR])) {
s                 643 src/misc.c     		*rp++ = *s++;