~ubuntu-branches/ubuntu/trusty/htop/trusty-proposed

1.2.2 by Bartosz Fenski
Import upstream version 0.6.3
1
/* Do not edit this file. It was automatically generated. */
1 by Bartosz Fenski
Import upstream version 0.3.3
2
3
#ifndef HEADER_String
4
#define HEADER_String
5
/*
1.1.17 by Eugene V. Lyubimkin
Import upstream version 1.0.1
6
htop - String.h
1.1.16 by Eugene V. Lyubimkin
Import upstream version 1.0
7
(C) 2004-2011 Hisham H. Muhammad
1 by Bartosz Fenski
Import upstream version 0.3.3
8
Released under the GNU GPL, see the COPYING file
9
in the source distribution for its full text.
10
*/
11
1.2.2 by Bartosz Fenski
Import upstream version 0.6.3
12
#define String_startsWith(s, match) (strstr((s), (match)) == (s))
13
1.1.15 by Eugene V. Lyubimkin
Import upstream version 0.9
14
char* String_cat(const char* s1, const char* s2);
15
16
char* String_trim(const char* in);
1 by Bartosz Fenski
Import upstream version 0.3.3
17
1.1.9 by Bartosz Fenski
Import upstream version 0.6.6+svn20070915
18
extern int String_eq(const char* s1, const char* s2);
1 by Bartosz Fenski
Import upstream version 0.3.3
19
1.1.16 by Eugene V. Lyubimkin
Import upstream version 1.0
20
char** String_split(const char* s, char sep, int* n);
1 by Bartosz Fenski
Import upstream version 0.3.3
21
22
void String_freeArray(char** s);
23
1.1.15 by Eugene V. Lyubimkin
Import upstream version 0.9
24
int String_contains_i(const char* s, const char* match);
1 by Bartosz Fenski
Import upstream version 0.3.3
25
1.1.12 by Alessandro Ghersi
Import upstream version 0.8.1
26
char* String_getToken(const char* line, const unsigned short int numMatch);
27
1 by Bartosz Fenski
Import upstream version 0.3.3
28
#endif