-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathstrmode.c
47 lines (44 loc) · 1.77 KB
/
strmode.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1985-2011 AT&T Intellectual Property *
* Copyright (c) 2020-2023 Contributors to ksh 93u+m *
* and is licensed under the *
* Eclipse Public License, Version 2.0 *
* *
* A copy of the License is available at *
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html *
* (with md5 checksum 84283fa8859daf213bdda5a9f8d1be1d) *
* *
* Glenn Fowler <[email protected]> *
* David Korn <[email protected]> *
* Phong Vo <[email protected]> *
* Martijn Dekker <[email protected]> *
* *
***********************************************************************/
/*
* G. S. Fowler
* AT&T Bell Laboratories
*
* return modex canonical representation of file mode bits
* given ls -l style file mode string
*/
#include "modelib.h"
int
strmode(const char* s)
{
int c;
char* t;
struct modeop* p;
int mode;
mode = 0;
for (p = modetab; (c = *s++) && p < &modetab[MODELEN]; p++)
for (t = p->name; *t; t++)
if (*t == c)
{
c = t - p->name;
mode |= (p->mask1 & (c << p->shift1)) | (p->mask2 & (c << p->shift2));
break;
}
return mode;
}