int *oldmask, int minmask, int allmask)
 {
        const char *debugstr;
-       char op = 0;
+       char op = '\0';
        int newmask = minmask, i, len, found = 0;
 
        /* <str> must be a list of tokens separated by whitespace
         * appears first in <str>, '*oldmask' is used as the starting point
         * (relative), otherwise minmask is used (absolute).  An operator
         * applies to all following tokens up to the next operator. */
-       while (*str != 0) {
+       while (*str != '\0') {
                while (isspace(*str))
                        str++;
-               if (*str == 0)
+               if (*str == '\0')
                        break;
                if (*str == '+' || *str == '-') {
                        op = *str++;
                                newmask = *oldmask;
                        while (isspace(*str))
                                str++;
-                       if (*str == 0)    /* trailing op */
+                       if (*str == '\0')  /* trailing op */
                                return -EINVAL;
                }
 
                /* find token length */
-               for (len = 0; str[len] != 0 && !isspace(str[len]) &&
-                     str[len] != '+' && str[len] != '-'; len++);
+               len = 0;
+               while (str[len] != '\0' && !isspace(str[len]) &&
+                      str[len] != '+' && str[len] != '-')
+                       len++;
 
                /* match token */
                found = 0;