Added patch headers.
[linux-flexiantxendom0-3.2.10.git] / kdb / modules / lcrash / kl_libutil.h
1 /*
2  * $Id: kl_libutil.h 1122 2004-12-21 23:26:23Z tjm $
3  *
4  * This file is part of libutil.
5  * A library which provides auxiliary functions.
6  * libutil is part of lkcdutils -- utilities for Linux kernel crash dumps.
7  *
8  * Created by Silicon Graphics, Inc.
9  * Contributions by IBM, NEC, and others
10  *
11  * Copyright (C) 1999 - 2004 Silicon Graphics, Inc. All rights reserved.
12  * Copyright (C) 2001, 2002 IBM Deutschland Entwicklung GmbH, IBM Corporation
13  * Copyright 2000 Junichi Nomura, NEC Solutions <j-nomura@ce.jp.nec.com>
14  *
15  * This code is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU Lesser Public License as published by
17  * the Free Software Foundation; either version 2.1 of the License, or
18  * (at your option) any later version. See the file COPYING for more
19  * information.
20  */
21
22 #ifndef __KL_LIBUTIL_H
23 #define __KL_LIBUTIL_H
24
25 /* cpw: change all these from the < > form to the " " form: */
26 #include "kl_alloc.h"
27 #include "kl_btnode.h"
28 #include "kl_copt.h"
29 #include "kl_htnode.h"
30 #include "kl_queue.h"
31 #include "kl_stringtab.h"
32
33 int kl_shift_value(uint64_t );
34 int kl_string_compare(char *, char *);
35 int kl_string_match(char *, char *);
36 uint64_t kl_strtoull(char *, char **, int);
37 time_t kl_str_to_ctime(char *);
38 void *kl_get_ra(void);
39
40 #endif /* __KL_LIBUTIL_H */