X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fareadlink.h;h=30e3b69c028b0f9c1a1f4f707dd3754da6742523;hb=d48d7d9132b633a3a31a2f6f131ce7033f1faf8d;hp=7187f71de10a9d1279ac39ccb1945eee6589e6b6;hpb=692e80d36f3d6aea3e812600815c97389d6bc4fb;p=gnulib.git diff --git a/lib/areadlink.h b/lib/areadlink.h index 7187f71de..30e3b69c0 100644 --- a/lib/areadlink.h +++ b/lib/areadlink.h @@ -1,11 +1,12 @@ /* Read symbolic links without size limitation. - Copyright (C) 2001, 2003, 2004, 2007 Free Software Foundation, Inc. + Copyright (C) 2001, 2003-2004, 2007, 2009-2011 Free Software Foundation, + Inc. - This program is free software; you can redistribute it and/or modify + 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. + the Free Software Foundation; either version 3 of the License, 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 @@ -13,9 +14,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; see the file COPYING. - If not, write to the Free Software Foundation, - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + along with this program. If not, see . */ /* Written by Jim Meyering */ @@ -23,3 +22,12 @@ extern char *areadlink (char const *filename); extern char *areadlink_with_size (char const *filename, size_t size_hint); + +#if GNULIB_AREADLINKAT +extern char *areadlinkat (int fd, char const *filename); +#endif + +#if GNULIB_AREADLINKAT_WITH_SIZE +extern char *areadlinkat_with_size (int fd, char const *filename, + size_t size_hint); +#endif