Ignore:
Timestamp:
Apr 21, 2007, 10:55:18 PM (18 years ago)
Author:
bird
Message:

hacking...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ash-messup/shfile.h

    r882 r883  
    4646{
    4747    shmtx               mtx;            /**< Mutex protecting any operations on the table and it's handles. */
     48    char               *cwd;            /**< The current directory for this shell instance. */
    4849    unsigned            size;           /**< The size of the table (number of entries). */
    4950    shfile             *tab;            /**< Pointer to the table. */
     
    5253
    5354int shfile_open(shfdtab *, const char *, unsigned);
    54 int shfile_close(shfdtab *pfdtab, unsigned fd);
     55int shfile_close(shfdtab *, unsigned);
    5556
     57int shfile_stat(shfdtab *, const char *, struct stat *);
     58int shfile_lstat(shfdtab *, const char *, struct stat *);
     59int shfile_chdir(shfdtab *, const char *);
     60char *shfile_getcwd(shfdtab *, char *, int);
     61         
    5662#endif
    5763
Note: See TracChangeset for help on using the changeset viewer.