c939868a38534a09c5d277a12c5bb64ccc314d62
[fw/sdcc] / src / SDCCutil.h
1 /*-------------------------------------------------------------------------
2   SDCCutil.c - Small utility functions.
3
4              Written By -  Sandeep Dutta . sandeep.dutta@usa.net (1999)
5
6    This program is free software; you can redistribute it and/or modify it
7    under the terms of the GNU General Public License as published by the
8    Free Software Foundation; either version 2, or (at your option) any
9    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
14    GNU 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20    In other words, you are welcome to use, share and improve this program.
21    You are forbidden to forbid anyone else to use, share and improve
22    what you give them.   Help stamp out software-hoarding!
23 -------------------------------------------------------------------------*/
24
25 #ifndef SDCCUTIL_H
26 #define SDCCUTIL_H
27
28 #include "SDCChasht.h"
29 #include <stdarg.h>
30
31 /** Given an array of name, value string pairs creates a new hash
32     containing all of the pairs.
33 */
34 hTab *populateStringHash(const char **pin);
35
36 /** Prints elements of the set to the file, each element on new line
37 */
38 void fputStrSet(FILE *fp, set *list);
39
40 /** Prepend / append given strings to each item of string set. The result is in a
41     new string set.
42 */
43 set *appendStrSet(set *list, const char *pre, const char *post);
44
45 /** Given a set returns a string containing all of the strings seperated
46     by spaces. The returned string is on the heap.
47 */
48 const char *joinStrSet(set *list);
49
50 /** Given a file with path information in the binary files directory,
51     returns the directory component. Used for discovery of bin
52     directory of SDCC installation. Returns NULL if the path is
53     impossible.
54 */
55 char *getBinPath (const char *prel);
56
57 /** Returns true if the given path exists.
58  */
59 bool pathExists (const char *ppath);
60
61 void setMainValue (const char *pname, const char *pvalue);
62
63 void populateMainValues (const char **ppin);
64
65 void buildCmdLine2 (char *pbuffer, size_t len, const char *pcmd, ...);
66
67 /** Returns true if sz starts with the string given in key.
68  */
69 bool startsWith (const char *sz, const char *key);
70
71 /** Removes any newline characters from the string.  Not strictly the
72     same as perl's chomp.
73 */
74 void chomp (char *sz);
75
76 hTab *
77 getRuntimeVariables(void);
78
79 /* strncpy() with guaranteed NULL termination. */
80 char *strncpyz(char *dest, const char *src, size_t n);
81
82 /* like strncat() with guaranteed NULL termination
83  * The passed size should be the size of the dest buffer, not the number of 
84  * bytes to copy.
85  */
86 char *strncatz(char *dest, const char *src, size_t n);
87
88 /* return SDCC build number */
89 const char *getBuildNumber(void);
90
91 /* convert a fixed16x16 type to double */
92 double doubleFromFixed16x16(TYPE_UDWORD value);
93
94 /* convert a double type to fixed16x16 */
95 TYPE_UDWORD fixed16x16FromDouble(double value);
96
97 /* snprintf, by hook or by crook. */
98 size_t SDCCsnprintf(char *, size_t, const char *, ...);
99
100 # if defined(HAVE_VSNPRINTF)
101
102 // best option: we can define our own snprintf which logs errors.
103 #  define SNPRINTF SDCCsnprintf
104
105 # elif defined(HAVE_SPRINTF)
106
107 // if we can't build a safe snprintf for lack of vsnprintf but there
108 // is a native snprintf, use it.
109 #  define SNPRINTF snprintf
110
111 # elif defined(HAVE_VSPRINTF)
112
113 // we can at least define our own unsafe version.
114 #  define SNPRINTF SDCCsnprintf
115
116 # else
117 // We don't have a native snprintf nor the functions we need to write one.
118 #  error "Need at least one of snprintf, vsnprintf, vsprintf!"
119 # endif
120
121 #endif