Mercurial > hg > octave-nkf > gnulib-hg
annotate lib/savedir.h @ 7675:476857ef4611
* lib/idcache.c: Adjust comments in user- and group- portions to
be more accurate, and to be consistent with one another.
author | Jim Meyering <jim@meyering.net> |
---|---|
date | Mon, 20 Nov 2006 13:08:38 +0000 |
parents | 43e3888c56c4 |
children | bbbbbf4cd1c5 |
rev | line source |
---|---|
4397
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
1 /* Save the list of files in a directory in a string. |
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
2 |
7151 | 3 Copyright (C) 1997, 1999, 2001, 2003, 2005 Free Software Foundation, Inc. |
4397
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
4 |
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
5 This program is free software; you can redistribute it and/or modify |
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
6 it under the terms of the GNU General Public License as published by |
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
7 the Free Software Foundation; either version 2, or (at your option) |
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
8 any later version. |
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
9 |
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
10 This program is distributed in the hope that it will be useful, |
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
11 but WITHOUT ANY WARRANTY; without even the implied warranty of |
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
13 GNU General Public License for more details. |
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
14 |
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
15 You should have received a copy of the GNU General Public License |
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
16 along with this program; if not, write to the Free Software Foundation, |
5848
a48fb0e98c8c
*** empty log message ***
Paul Eggert <eggert@cs.ucla.edu>
parents:
4397
diff
changeset
|
17 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
4397
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
18 |
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
19 /* Written by David MacKenzie <djm@gnu.ai.mit.edu>. */ |
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3416
diff
changeset
|
20 |
1170 | 21 #if !defined SAVEDIR_H_ |
22 # define SAVEDIR_H_ | |
23 | |
6458
eaa31dc34937
* modules/savedir (Depends-on): Add openat.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5848
diff
changeset
|
24 char *savedir (char const *dir); |
eaa31dc34937
* modules/savedir (Depends-on): Add openat.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5848
diff
changeset
|
25 char *fdsavedir (int fd); |
1170 | 26 |
27 #endif |