mirror of
https://github.com/coreutils/coreutils.git
synced 2025-01-09 17:43:23 +08:00
15 lines
248 B
C
15 lines
248 B
C
#ifndef SAVE_CWD_H
|
|
# define SAVE_CWD_H 1
|
|
|
|
struct saved_cwd
|
|
{
|
|
int desc;
|
|
char *name;
|
|
};
|
|
|
|
int save_cwd (struct saved_cwd *cwd);
|
|
int restore_cwd (const struct saved_cwd *cwd);
|
|
void free_cwd (struct saved_cwd *cwd);
|
|
|
|
#endif /* SAVE_CWD_H */
|