e2fsprogs/lib/uuid/uuid.h

64 lines
1.2 KiB
C
Raw Normal View History

1997-04-29 18:53:37 +04:00
/*
* Public include file for the UUID library
1997-04-29 20:17:09 +04:00
*
* Copyright (C) 1996, 1997, 1998 Theodore Ts'o.
1997-04-29 20:17:09 +04:00
*
* %Begin-Header%
* This file may be redistributed under the terms of the GNU
* Library General Public License.
1997-04-29 20:17:09 +04:00
* %End-Header%
1997-04-29 18:53:37 +04:00
*/
#ifndef _UUID_UUID_H
#define _UUID_UUID_H
#include <sys/types.h>
#include <sys/time.h>
#include <time.h>
1997-04-29 18:53:37 +04:00
typedef unsigned char uuid_t[16];
/* UUID Variant definitions */
#define UUID_VARIANT_NCS 0
#define UUID_VARIANT_DCE 1
#define UUID_VARIANT_MICROSOFT 2
#define UUID_VARIANT_OTHER 3
#ifdef __cplusplus
extern "C" {
#endif
1997-04-29 18:53:37 +04:00
/* clear.c */
void uuid_clear(uuid_t uu);
/* compare.c */
int uuid_compare(const uuid_t uu1, const uuid_t uu2);
1997-04-29 18:53:37 +04:00
/* copy.c */
void uuid_copy(uuid_t dst, const uuid_t src);
1997-04-29 18:53:37 +04:00
/* gen_uuid.c */
void uuid_generate(uuid_t out);
void uuid_generate_random(uuid_t out);
void uuid_generate_time(uuid_t out);
1997-04-29 18:53:37 +04:00
/* isnull.c */
int uuid_is_null(const uuid_t uu);
1997-04-29 18:53:37 +04:00
/* parse.c */
int uuid_parse(const char *in, uuid_t uu);
1997-04-29 18:53:37 +04:00
/* unparse.c */
void uuid_unparse(const uuid_t uu, char *out);
1997-04-29 18:53:37 +04:00
/* uuid_time.c */
time_t uuid_time(const uuid_t uu, struct timeval *ret_tv);
int uuid_type(const uuid_t uu);
int uuid_variant(const uuid_t uu);
#ifdef __cplusplus
}
#endif
#endif /* _UUID_UUID_H */