aboutsummaryrefslogtreecommitdiff
path: root/include/util.h
blob: ebfe862fcbcbf0f597302762bd18f6342d5293fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __UTIL_H
#define __UTIL_H

typedef struct {
  void *ptr;
} ptr_wrapper_t;

char *ltrim(char *s);
char *rtrim(char *s);
char *trim(char *s);

#endif