tillitis-key/hw/application_fpga/fw/tk1/lib.h

23 lines
562 B
C
Raw Normal View History

2022-09-19 06:51:11 +00:00
/*
* Copyright (C) 2022 - Tillitis AB
* SPDX-License-Identifier: GPL-2.0-only
*/
#ifndef LIB_H
#define LIB_H
#include "types.h"
void htif_putc(int ch);
void htif_lf();
void htif_puthex(uint8_t c);
void htif_putinthex(const uint32_t n);
int htif_puts(const char *s);
void htif_hexdump(uint8_t *buf, int len);
2022-09-19 06:51:11 +00:00
void *memset(void *dest, int c, unsigned n);
void memcpy_s(void *dest, size_t destsize, const void *src, size_t n);
void wordcpy_s(void *dest, size_t destsize, const void *src, size_t n);
2022-09-19 06:51:11 +00:00
int memeq(void *dest, const void *src, unsigned n);
#endif