Changeset 3480 for trunk/src/kash/exec.c
- Timestamp:
- Sep 21, 2020, 1:20:56 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/exec.c
r3477 r3480 168 168 * Check if 'path' is an absolute (starts with root) path or not. 169 169 */ 170 K_INLINE i sabspath(const char *path)170 K_INLINE int isabspath(const char *path) 171 171 { 172 172 #if K_OS == K_OS_WINDOWS || K_OS == K_OS_OS2 … … 187 187 * Checks if the filename include a path or not. 188 188 */ 189 K_INLINE haspath(const char *name)189 K_INLINE int haspath(const char *name) 190 190 { 191 191 #if K_OS == K_OS_WINDOWS || K_OS == K_OS_OS2 … … 659 659 int idx; 660 660 int prev; 661 int norehashoncd = 1;662 661 char *fullname; 663 662 int e; … … 847 846 cmdp->cmdtype = CMDNORMAL; 848 847 cmdp->param.n.index = idx; 848 #ifdef PC_EXE_EXTS 849 849 cmdp->param.n.suffix = suffix; 850 #else 851 cmdp->param.n.suffix = 0; 852 #endif 850 853 INTON; 851 854 goto success;
Note:
See TracChangeset
for help on using the changeset viewer.