~ubuntu-branches/ubuntu/lucid/rlpr/lucid

« back to all changes in this revision

Viewing changes to lib/lib.h

  • Committer: Bazaar Package Importer
  • Author(s): Brian Mays
  • Date: 2002-03-20 11:21:15 UTC
  • Revision ID: james.westby@ubuntu.com-20020320112115-whl7m242ig71nu3h
Tags: upstream-2.02
ImportĀ upstreamĀ versionĀ 2.02

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef LIB_H
 
2
#define LIB_H
 
3
 
 
4
#include <config.h>
 
5
#include <stddef.h>
 
6
 
 
7
/* 
 
8
 * Copyright (c) 1998 peter memishian (meem), meem@gnu.org
 
9
 *
 
10
 * This program is free software; you can redistribute it and/or modify
 
11
 * it under the terms of the GNU General Public License as published by
 
12
 * the Free Software Foundation; either version 2, or (at your option)
 
13
 * any later version.
 
14
 *
 
15
 * This program is distributed in the hope that it will be useful,
 
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 
18
 * General Public License for more details.
 
19
 */
 
20
 
 
21
void    *xmalloc(size_t);
 
22
char    *xstrdup(const char *);
 
23
 
 
24
#ifndef HAVE_ALLOCA
 
25
void    *alloca(size_t);
 
26
#endif
 
27
 
 
28
#ifndef HAVE_STRCASECMP
 
29
int     strcasecmp(const char *, const char *);
 
30
#endif
 
31
 
 
32
#ifndef HAVE_STRDUP
 
33
char    *strdup(const char *);
 
34
#endif
 
35
 
 
36
#ifndef HAVE_STRSTR
 
37
char    *strstr(const char *, const char *);
 
38
#endif
 
39
 
 
40
#endif  /* LIB_H */