aboutsummaryrefslogtreecommitdiffstats
path: root/src/ckutil.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ckutil.c')
-rw-r--r--src/ckutil.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/ckutil.c b/src/ckutil.c
index 79d7fd3..5f8da98 100644
--- a/src/ckutil.c
+++ b/src/ckutil.c
@@ -143,6 +143,38 @@ int str_is_empty(const char *s) {
return 1;
}
+int swap_tilde_and_home(char *ret, const char *s) {
+ if (!ret || !s) {
+ return -1;
+ }
+ char *home = getenv("HOME");
+ if (!home) {
+ return -1;
+ }
+ ulong i;
+ ulong homelen = strlen(home);
+
+ if (s[0] == '~') {
+ strcpy(ret, home);
+ for (i = 1; i < strlen(s); i++) {
+ ret[homelen - 1 + i] = s[i];
+ }
+ return 0;
+ }
+
+ for (i = 0; i < strlen(home); i++) {
+ if (s[i] != home[i]) {
+ return -1;
+ }
+ }
+ /* s starts with $HOME */
+ strcpy(ret, "~");
+ for (i = homelen; i < strlen(s); i++) {
+ ret[i + 1 - homelen] = s[i];
+ }
+ return 0;
+}
+
int util_own_grp_copy(const char *dest, const char *original) {
if (!dest || !original) {
return -1;