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