1/*
2 * Copyright 2017, Data61, CSIRO (ABN 41 687 119 230)
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#include <camkes.h>
8#include <stdio.h>
9#include <string.h>
10
11#define BUF_SIZE 128
12
13void i_process(const char *str) {
14    char buf[BUF_SIZE];
15    snprintf(buf, BUF_SIZE, "%s%s", str, string_to_append);
16
17    o_process(buf);
18}
19