xref: /dragonfly/lib/libc/gen/pw_scan.h (revision c66c7e2f)
1ed5d5720SPeter Avalos /*-
2ed5d5720SPeter Avalos  * Copyright (c) 1994
3ed5d5720SPeter Avalos  *	The Regents of the University of California.  All rights reserved.
4ed5d5720SPeter Avalos  *
5ed5d5720SPeter Avalos  * Redistribution and use in source and binary forms, with or without
6ed5d5720SPeter Avalos  * modification, are permitted provided that the following conditions
7ed5d5720SPeter Avalos  * are met:
8ed5d5720SPeter Avalos  * 1. Redistributions of source code must retain the above copyright
9ed5d5720SPeter Avalos  *    notice, this list of conditions and the following disclaimer.
10ed5d5720SPeter Avalos  * 2. Redistributions in binary form must reproduce the above copyright
11ed5d5720SPeter Avalos  *    notice, this list of conditions and the following disclaimer in the
12ed5d5720SPeter Avalos  *    documentation and/or other materials provided with the distribution.
13*c66c7e2fSzrj  * 3. Neither the name of the University nor the names of its contributors
14ed5d5720SPeter Avalos  *    may be used to endorse or promote products derived from this software
15ed5d5720SPeter Avalos  *    without specific prior written permission.
16ed5d5720SPeter Avalos  *
17ed5d5720SPeter Avalos  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18ed5d5720SPeter Avalos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19ed5d5720SPeter Avalos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20ed5d5720SPeter Avalos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21ed5d5720SPeter Avalos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22ed5d5720SPeter Avalos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23ed5d5720SPeter Avalos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24ed5d5720SPeter Avalos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25ed5d5720SPeter Avalos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26ed5d5720SPeter Avalos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27ed5d5720SPeter Avalos  * SUCH DAMAGE.
28ed5d5720SPeter Avalos  *
29ed5d5720SPeter Avalos  *	@(#)pw_scan.h	8.1 (Berkeley) 4/1/94
30ed5d5720SPeter Avalos  * $FreeBSD: src/lib/libc/gen/pw_scan.h,v 1.7 2007/01/09 00:27:55 imp Exp $
31ed5d5720SPeter Avalos  * $DragonFly: src/usr.sbin/pwd_mkdb/pw_scan.h,v 1.3 2003/11/03 19:31:41 eirikn Exp $
32ed5d5720SPeter Avalos  */
33ed5d5720SPeter Avalos 
34ed5d5720SPeter Avalos #define _PWSCAN_MASTER 0x01
35ed5d5720SPeter Avalos #define _PWSCAN_WARN   0x02
36ed5d5720SPeter Avalos 
37ed5d5720SPeter Avalos extern int	__pw_scan(char *, struct passwd *, int);
38