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 <vec.h>
10
11void printer_print_string(const char *str) {
12    printf("%s", str);
13}
14void printer_print_vec(vec_t v) {
15    printf("(%2f, %2f)\n", v.x, v.y);
16}
17