blob: 843dfea7818ae3f59aabb75ac69520545435a8de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#ifndef _RPMBUILD_MISC_H
#define _RPMBUILD_MISC_H
#include <sys/types.h>
#include <rpm/rpmtypes.h>
#include <rpm/rpmds.h>
#ifdef __cplusplus
extern "C" {
#endif
/** \ingroup rpmbuild
* Truncate comment lines.
* @param s skip white space, truncate line at '#'
* @return 1 on comment lines, 0 otherwise
*/
RPM_GNUC_INTERNAL
int handleComments(char * s);
/** \ingroup rpmstring
*/
typedef struct StringBufRec *StringBuf;
/** \ingroup rpmstring
*/
RPM_GNUC_INTERNAL
StringBuf newStringBuf(void);
/** \ingroup rpmstring
*/
RPM_GNUC_INTERNAL
StringBuf freeStringBuf( StringBuf sb);
/** \ingroup rpmstring
*/
RPM_GNUC_INTERNAL
const char * getStringBuf(StringBuf sb);
/** \ingroup rpmstring
*/
RPM_GNUC_INTERNAL
void stripTrailingBlanksStringBuf(StringBuf sb);
/** \ingroup rpmstring
*/
#define appendStringBuf(sb, s) appendStringBufAux(sb, s, 0)
/** \ingroup rpmstring
*/
#define appendLineStringBuf(sb, s) appendStringBufAux(sb, s, 1)
/** \ingroup rpmstring
*/
RPM_GNUC_INTERNAL
void appendStringBufAux(StringBuf sb, const char * s, int nl);
/** \ingroup rpmbuild
* Parse an unsigned number.
* @param line from spec file
* @retval res pointer to uint32_t
* @return 0 on success, 1 on failure
*/
RPM_GNUC_INTERNAL
uint32_t parseUnsignedNum(const char * line, uint32_t * res);
#ifdef __cplusplus
}
#endif
#endif /* _RPMBUILD_MISC_H */
|