summaryrefslogtreecommitdiff
path: root/tests/test.c
blob: c40eb96638e8120e469185172fc232840bb6bd1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "../include/urweb.h"

typedef uw_Basis_string uw_Test_t;

uw_Test_t uw_Test_create(uw_context ctx, uw_Basis_string s) {
  return s;
}

uw_Basis_string uw_Test_out(uw_context ctx, uw_Test_t s) {
  return s;
}

uw_Test_t uw_Test_frob(uw_context ctx, uw_Test_t s1, uw_Basis_string s2) {
  return uw_Basis_strcat(ctx, s1, s2);
}