blob: 065f9531a8bd1d0bb15717528b0d99bf42d5fa40 (
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
|
#ifndef _PM_UTIL_H
#define _PM_UTIL_H
#include <stdlib.h>
#include <string.h>
#include <libintl.h>
#include <alpm_list.h>
#define UPDATE_SPEED_SEC 0.2f
#ifdef ENABLE_NLS
#define _(str) gettext(str)
#else
#define _(str) str
#endif
int getcols();
int makepath(const char *path);
int rmrf(const char *path);
void indentprint(const char *str, int indent);
char *strtoupper(char *str);
char *strtrim(char *str);
char *strreplace(const char *str, const char *needle, const char *replace);
void list_display(const char *title, const alpm_list_t *list);
void display_targets(const alpm_list_t *syncpkgs);
int yesno(char *fmt, ...);
#endif
|