Blame util.h

Packit Service 09cdfc
/* 
Packit Service 09cdfc
   Unix SMB/CIFS implementation.
Packit Service 09cdfc
   replacement routines for broken systems
Packit Service 09cdfc
   Copyright (C) Andrew Tridgell 1992-1998
Packit Service 09cdfc
   Copyright (C) Jelmer Vernooij 2005-2008
Packit Service 09cdfc
Packit Service 09cdfc
     ** NOTE! The following LGPL license applies to the replace
Packit Service 09cdfc
     ** library. This does NOT imply that all of Samba is released
Packit Service 09cdfc
     ** under the LGPL
Packit Service 09cdfc
   
Packit Service 09cdfc
   This library is free software; you can redistribute it and/or
Packit Service 09cdfc
   modify it under the terms of the GNU Lesser General Public
Packit Service 09cdfc
   License as published by the Free Software Foundation; either
Packit Service 09cdfc
   version 3 of the License, or (at your option) any later version.
Packit Service 09cdfc
Packit Service 09cdfc
   This library is distributed in the hope that it will be useful,
Packit Service 09cdfc
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 09cdfc
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 09cdfc
   Lesser General Public License for more details.
Packit Service 09cdfc
Packit Service 09cdfc
   You should have received a copy of the GNU Lesser General Public
Packit Service 09cdfc
   License along with this library; if not, see <http://www.gnu.org/licenses/>.
Packit Service 09cdfc
*/
Packit Service 09cdfc
Packit Service 09cdfc
#ifndef _LIBUTIL_H
Packit Service 09cdfc
#define _LIBUTIL_H
Packit Service 09cdfc
Packit Service 09cdfc
extern size_t strlcpy(char *d, const char *s, size_t bufsize);
Packit Service 09cdfc
extern size_t strlcat(char *d, const char *s, size_t bufsize);
Packit Service 09cdfc
Packit Service 09cdfc
extern char *getusername(uid_t uid);
Packit Service 09cdfc
#endif /* _LIBUTIL_H */
Packit Service 09cdfc