coreutils/lib/savedir.h

28 lines
1001 B
C
Raw Normal View History

2003-08-18 17:44:49 +08:00
/* Save the list of files in a directory in a string.
2006-01-11 01:47:56 +08:00
Copyright 1997, 1999, 2001, 2003, 2005 Free Software Foundation, Inc.
2003-08-18 17:44:49 +08:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
2005-05-14 15:58:06 +08:00
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
2003-08-18 17:44:49 +08:00
/* Written by David MacKenzie <djm@gnu.ai.mit.edu>. */
1997-12-21 19:22:51 +08:00
#if !defined SAVEDIR_H_
# define SAVEDIR_H_
2006-01-11 01:47:56 +08:00
char *savedir (char const *dir);
char *fdsavedir (int fd);
1997-12-21 19:22:51 +08:00
#endif