aboutsummaryrefslogtreecommitdiff
path: root/src/util.c
blob: faa73c93bcde3f0ee878f501ff2e1fe83a4ec6cb (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
#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;
}