Changeset 883 for trunk/src/ash-messup/shfile.h
- Timestamp:
- Apr 21, 2007, 10:55:18 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ash-messup/shfile.h
r882 r883 46 46 { 47 47 shmtx mtx; /**< Mutex protecting any operations on the table and it's handles. */ 48 char *cwd; /**< The current directory for this shell instance. */ 48 49 unsigned size; /**< The size of the table (number of entries). */ 49 50 shfile *tab; /**< Pointer to the table. */ … … 52 53 53 54 int shfile_open(shfdtab *, const char *, unsigned); 54 int shfile_close(shfdtab * pfdtab, unsigned fd);55 int shfile_close(shfdtab *, unsigned); 55 56 57 int shfile_stat(shfdtab *, const char *, struct stat *); 58 int shfile_lstat(shfdtab *, const char *, struct stat *); 59 int shfile_chdir(shfdtab *, const char *); 60 char *shfile_getcwd(shfdtab *, char *, int); 61 56 62 #endif 57 63
Note:
See TracChangeset
for help on using the changeset viewer.