aboutsummaryrefslogtreecommitdiff
path: root/src/util.c
blob: 4e3dfc9d42fc1f65e0841c29bebc4b3d45c40b48 (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
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <util.h>

char *
ltrim(char *s)
{
  while (isspace(*s))
    s++;
  return s;
}

char *
rtrim(char *s)
{
  char *back = s + strlen(s);
  while (isspace(*--back))
    ;
  *(back + 1) = '\0';
  return s;
}

char *
trim(char *s)
{
  return rtrim(ltrim(s));
}

ptr_wrapper_t *
wrap_ptr(void *ptr)
{
  ptr_wrapper_t *wrapper = malloc(sizeof(ptr_wrapper_t));
  wrapper->ptr = ptr;
  return wrapper;
}

void *
get_wrapped(ptr_wrapper_t *wrapper)
{
  return wrapper->ptr;
}