mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-11-28 03:10:56 -05:00
fw: Prefix all HTIF console I/O functions with htif_
This commit is contained in:
parent
fbe71e1466
commit
65bc96a725
5 changed files with 70 additions and 69 deletions
|
|
@ -8,12 +8,12 @@
|
|||
|
||||
#include "types.h"
|
||||
|
||||
void putc(int ch);
|
||||
void lf();
|
||||
void puthex(uint8_t c);
|
||||
void putinthex(const uint32_t n);
|
||||
int puts(const char *s);
|
||||
void hexdump(uint8_t *buf, int len);
|
||||
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);
|
||||
void *memset(void *dest, int c, unsigned n);
|
||||
void *memcpy(void *dest, const void *src, unsigned n);
|
||||
void *wordcpy(void *dest, const void *src, unsigned n);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue