Mercurial > hg > octave-nkf > gnulib-hg
annotate lib/same.h @ 7292:17785d5bede0
Fix docstrings
author | Sergey Poznyakoff <gray@gnu.org.ua> |
---|---|
date | Sun, 10 Sep 2006 11:52:44 +0000 |
parents | a48fb0e98c8c |
children | bbbbbf4cd1c5 |
rev | line source |
---|---|
2092
0cf0dc1ce656
add copyright/no-warranty comment
Jim Meyering <jim@meyering.net>
parents:
1858
diff
changeset
|
1 /* Determine whether two file names refer to the same file. |
4397
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
2092
diff
changeset
|
2 |
5134 | 3 Copyright (C) 1997, 1998, 1999, 2000, 2003, 2004 Free Software |
4397
c6450308f123
Assume C89, so PARAMS isn't needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
2092
diff
changeset
|
4 Foundation, Inc. |
2092
0cf0dc1ce656
add copyright/no-warranty comment
Jim Meyering <jim@meyering.net>
parents:
1858
diff
changeset
|
5 |
0cf0dc1ce656
add copyright/no-warranty comment
Jim Meyering <jim@meyering.net>
parents:
1858
diff
changeset
|
6 This program is free software; you can redistribute it and/or modify |
0cf0dc1ce656
add copyright/no-warranty comment
Jim Meyering <jim@meyering.net>
parents:
1858
diff
changeset
|
7 it under the terms of the GNU General Public License as published by |
0cf0dc1ce656
add copyright/no-warranty comment
Jim Meyering <jim@meyering.net>
parents:
1858
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
0cf0dc1ce656
add copyright/no-warranty comment
Jim Meyering <jim@meyering.net>
parents:
1858
diff
changeset
|
9 any later version. |
0cf0dc1ce656
add copyright/no-warranty comment
Jim Meyering <jim@meyering.net>
parents:
1858
diff
changeset
|
10 |
0cf0dc1ce656
add copyright/no-warranty comment
Jim Meyering <jim@meyering.net>
parents:
1858
diff
changeset
|
11 This program is distributed in the hope that it will be useful, |
0cf0dc1ce656
add copyright/no-warranty comment
Jim Meyering <jim@meyering.net>
parents:
1858
diff
changeset
|
12 but WITHOUT ANY WARRANTY; without even the implied warranty of |
0cf0dc1ce656
add copyright/no-warranty comment
Jim Meyering <jim@meyering.net>
parents:
1858
diff
changeset
|
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
0cf0dc1ce656
add copyright/no-warranty comment
Jim Meyering <jim@meyering.net>
parents:
1858
diff
changeset
|
14 GNU General Public License for more details. |
0cf0dc1ce656
add copyright/no-warranty comment
Jim Meyering <jim@meyering.net>
parents:
1858
diff
changeset
|
15 |
0cf0dc1ce656
add copyright/no-warranty comment
Jim Meyering <jim@meyering.net>
parents:
1858
diff
changeset
|
16 You should have received a copy of the GNU General Public License |
0cf0dc1ce656
add copyright/no-warranty comment
Jim Meyering <jim@meyering.net>
parents:
1858
diff
changeset
|
17 along with this program; if not, write to the Free Software Foundation, |
5848
a48fb0e98c8c
*** empty log message ***
Paul Eggert <eggert@cs.ucla.edu>
parents:
5134
diff
changeset
|
18 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
2092
0cf0dc1ce656
add copyright/no-warranty comment
Jim Meyering <jim@meyering.net>
parents:
1858
diff
changeset
|
19 |
1858 | 20 #ifndef SAME_H_ |
21 # define SAME_H_ 1 | |
22 | |
5134 | 23 # include <stdbool.h> |
24 | |
25 bool same_name (const char *source, const char *dest); | |
1858 | 26 |
27 #endif /* SAME_H_ */ |