blob: e0e66d4c573e9053e8db7a7e2a903a8095af7ce2 [file] [log] [blame] [edit]
/*
* Copyright 2017, Data61, CSIRO (ABN 41 687 119 230)
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <camkes.h>
#include <stdio.h>
#include <string.h>
#define BUF_SIZE 128
void i_process(const char *str)
{
char buf[BUF_SIZE];
snprintf(buf, BUF_SIZE, "%s%s", str, string_to_append);
o_process(buf);
}