xref: /titanic_41/usr/src/head/uuid/uuid.h (revision 0e2b17abcde4314f4a65c36af6387d0cb3d8f5fb)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
227c478bd9Sstevel@tonic-gate /*
237c478bd9Sstevel@tonic-gate  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
27*0e2b17abSAndy Stormont /*
28*0e2b17abSAndy Stormont  * Copyright 2014 Andrew Stormont.
29*0e2b17abSAndy Stormont  */
30*0e2b17abSAndy Stormont 
317c478bd9Sstevel@tonic-gate #ifndef	_UUID_H
327c478bd9Sstevel@tonic-gate #define	_UUID_H
337c478bd9Sstevel@tonic-gate 
347c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
357c478bd9Sstevel@tonic-gate extern "C" {
367c478bd9Sstevel@tonic-gate #endif
377c478bd9Sstevel@tonic-gate 
387c478bd9Sstevel@tonic-gate /*
397c478bd9Sstevel@tonic-gate  * The copyright in this file is taken from the original Leach & Salz
407c478bd9Sstevel@tonic-gate  * UUID specification, from which this implementation is derived.
417c478bd9Sstevel@tonic-gate  */
427c478bd9Sstevel@tonic-gate 
437c478bd9Sstevel@tonic-gate /*
447c478bd9Sstevel@tonic-gate  * Copyright (c) 1990- 1993, 1996 Open Software Foundation, Inc.
457c478bd9Sstevel@tonic-gate  * Copyright (c) 1989 by Hewlett-Packard Company, Palo Alto, Ca. &
467c478bd9Sstevel@tonic-gate  * Digital Equipment Corporation, Maynard, Mass.  Copyright (c) 1998
477c478bd9Sstevel@tonic-gate  * Microsoft.  To anyone who acknowledges that this file is provided
487c478bd9Sstevel@tonic-gate  * "AS IS" without any express or implied warranty: permission to use,
497c478bd9Sstevel@tonic-gate  * copy, modify, and distribute this file for any purpose is hereby
507c478bd9Sstevel@tonic-gate  * granted without fee, provided that the above copyright notices and
517c478bd9Sstevel@tonic-gate  * this notice appears in all source code copies, and that none of the
527c478bd9Sstevel@tonic-gate  * names of Open Software Foundation, Inc., Hewlett-Packard Company,
537c478bd9Sstevel@tonic-gate  * or Digital Equipment Corporation be used in advertising or
547c478bd9Sstevel@tonic-gate  * publicity pertaining to distribution of the software without
557c478bd9Sstevel@tonic-gate  * specific, written prior permission.  Neither Open Software
567c478bd9Sstevel@tonic-gate  * Foundation, Inc., Hewlett-Packard Company, Microsoft, nor Digital
577c478bd9Sstevel@tonic-gate  * Equipment Corporation makes any representations about the
587c478bd9Sstevel@tonic-gate  * suitability of this software for any purpose.
597c478bd9Sstevel@tonic-gate  */
607c478bd9Sstevel@tonic-gate 
617c478bd9Sstevel@tonic-gate #include <sys/types.h>
627c478bd9Sstevel@tonic-gate #include <sys/uuid.h>
637c478bd9Sstevel@tonic-gate 
647c478bd9Sstevel@tonic-gate extern void uuid_generate(uuid_t);
657c478bd9Sstevel@tonic-gate extern void uuid_generate_random(uuid_t);
667c478bd9Sstevel@tonic-gate extern void uuid_generate_time(uuid_t);
677c478bd9Sstevel@tonic-gate extern void uuid_copy(uuid_t, uuid_t);
687c478bd9Sstevel@tonic-gate extern void uuid_clear(uuid_t);
697c478bd9Sstevel@tonic-gate extern void uuid_unparse(uuid_t, char *);
70*0e2b17abSAndy Stormont extern void uuid_unparse_lower(uuid_t, char *);
71*0e2b17abSAndy Stormont extern void uuid_unparse_upper(uuid_t, char *);
727c478bd9Sstevel@tonic-gate extern int uuid_compare(uuid_t, uuid_t);
737c478bd9Sstevel@tonic-gate extern int uuid_is_null(uuid_t);
747c478bd9Sstevel@tonic-gate extern int uuid_parse(char *, uuid_t);
757c478bd9Sstevel@tonic-gate extern time_t uuid_time(uuid_t, struct timeval *);
767c478bd9Sstevel@tonic-gate 
777c478bd9Sstevel@tonic-gate #ifdef __cplusplus
787c478bd9Sstevel@tonic-gate }
797c478bd9Sstevel@tonic-gate #endif
807c478bd9Sstevel@tonic-gate 
817c478bd9Sstevel@tonic-gate #endif /* _UUID_H */
82