Convert utility.c into libbb.a. It is now a whole pile of .c
[oweals/busybox.git] / busybox.h
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Busybox main internal header file
4  *
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  * Based in part on code from sash, Copyright (c) 1999 by David I. Bell 
21  * Permission has been granted to redistribute this code under the GPL.
22  *
23  */
24 #ifndef _BB_INTERNAL_H_
25 #define _BB_INTERNAL_H_    1
26
27 #include "Config.h"
28
29 #include <stdio.h>
30 #include <stdarg.h>
31 #include <sys/stat.h>
32 #include <sys/types.h>
33
34 #ifdef DMALLOC
35 #include "dmalloc.h"
36 #endif
37
38 #include <features.h>
39 /* Stupid libc doesn't have a reliable way for use to know 
40  * that libc5 is being used.   Assume this is good enough */ 
41 #if ! defined __GLIBC__ && ! defined __UCLIBC__
42 /* libc5 doesn't define socklen_t */
43 typedef unsigned int socklen_t;
44 #endif  
45
46
47 enum Location {
48         _BB_DIR_ROOT = 0,
49         _BB_DIR_BIN,
50         _BB_DIR_SBIN,
51         _BB_DIR_USR_BIN,
52         _BB_DIR_USR_SBIN
53 };
54
55 struct BB_applet {
56         const   char*   name;
57         int     (*main)(int argc, char** argv);
58         enum    Location        location;
59 };
60 /* From busybox.c */
61 extern const struct BB_applet applets[];
62
63 /* Automagically pull in all the applet function prototypes and
64  * applet usage strings.  These are all of the form:
65  *              extern int foo_main(int argc, char **argv);
66  *              extern const char foo_usage[];
67  * These are all autogenerated from the set of currently defined applets. 
68  */
69 #define PROTOTYPES
70 #include "applets.h"
71 #undef PROTOTYPES
72
73 extern const char *applet_name;
74
75 #ifdef BB_FEATURE_BUFFERS_GO_ON_STACK
76 #define RESERVE_BB_BUFFER(buffer,len)           char buffer[len]
77 #define RESERVE_BB_UBUFFER(buffer,len) unsigned char buffer[len]
78 #else
79 #define RESERVE_BB_BUFFER(buffer,len)           char *buffer=xmalloc(len)
80 #define RESERVE_BB_UBUFFER(buffer,len) unsigned char *buffer=xmalloc(len)
81 #endif
82
83
84 /* Bit map related macros -- libc5 doens't provide these... sigh.  */
85 #ifndef setbit
86 #define NBBY            CHAR_BIT
87 #define setbit(a,i)     ((a)[(i)/NBBY] |= 1<<((i)%NBBY))
88 #define clrbit(a,i)     ((a)[(i)/NBBY] &= ~(1<<((i)%NBBY)))
89 #define isset(a,i)      ((a)[(i)/NBBY] & (1<<((i)%NBBY)))
90 #define isclr(a,i)      (((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0)
91 #endif
92
93 #ifndef RB_POWER_OFF
94 /* Stop system and switch power off if possible.  */
95 #define RB_POWER_OFF   0x4321fedc
96 #endif
97
98
99 /* Pull in the utility routines from libbb */
100 #include "libbb/libbb.h"
101
102
103
104 #endif /* _BB_INTERNAL_H_ */