gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:strcmp from t2ex/t2ex_source/t2ex/fs/fs/src/fs_root.c (0.00 seconds)
t2ex
t2ex_source/t2ex/fs/fs/src/fs_root.c - 9.2KB - 312 lines
128: {
129:         if (strcmp(req->path, root_con_name) != 0)     return EX_NOENT;
130:         if ((req->oflags & O_ACCMODE) != O_RDONLY)     return EX_ROFS;
156: { 157: return (strcmp(req->path, root_con_name) != 0) ? 158: EX_NOENT : set_stat64_us(req->buf);
169: { 170: return (strcmp(req->path, root_con_name) != 0) ? EX_NOTDIR : E_OK; 171: }
300: { 301: return (strcmp(coninf->connm, root_con_name) != 0) ? EX_PERM : 0; 302: }