rewritten getPrefixFromBinPath()
[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 /** Given an array of string pointers and another string, adds the
37     string to the end of the list.  The end of the list is assumed to
38     be the first NULL pointer.
39 */
40 void addToList (const char **list, const char *str);
41
42 /** Given an array of string pointers returns a string containing all
43     of the strings seperated by spaces.  The returned string is on the
44     heap.  The join stops when a NULL pointer is hit.
45 */
46 char *join(const char **pplist);
47
48 /** Given an array of string pointers, returns a string containing all
49     of the strings seperated by spaces.  The returned string is on the
50     heap.  n is the number of strings in the list.
51 */
52 char *joinn(char **pplist, int n);
53
54 /** Returns the characters in the path p2 past the last matching characters in
55     p1.  Processes in a host dependent way.  For example, on win32 the
56     test is case insensitive and treats '/' and '\' as the same.
57 */
58 char *getPathDifference (char *pinto, const char *p1, const char *p2);
59
60 /** Given an array of string pointers, returns a string containing all
61     of the strings seperated by spaces.  The returned string is on the
62     heap.  n is the number of strings in the list.
63 */
64 char *getBinPath (const char *prel);
65
66 /** Returns true if the given path exists.
67  */
68 bool pathExists (const char *ppath);
69
70 void setMainValue (const char *pname, const char *pvalue);
71
72 void populateMainValues (const char **ppin);
73
74 void buildCmdLine2 (char *pbuffer, const char *pcmd, size_t len);
75
76 /** Returns true if sz starts with the string given in key.
77  */
78 bool startsWith (const char *sz, const char *key);
79
80 /** Removes any newline characters from the string.  Not strictly the
81     same as perl's chomp.
82 */
83 void chomp (char *sz);
84
85 hTab *
86 getRuntimeVariables(void);
87
88 /* strncpy() with guaranteed NULL termination. */
89 char *strncpyz(char *dest, const char *src, size_t n);
90
91 /* like strncat() with guaranteed NULL termination
92  * The passed size should be the size of the dest buffer, not the number of 
93  * bytes to copy.
94  */
95 char *strncatz(char *dest, const char *src, size_t n);
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
122
123 #endif
124