From 93b063fedfcf7409a67df035170ea5670cad22e1 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Tue, 24 Nov 2020 13:46:41 -0700 Subject: Moved action to top level. Removed old iterations of the project and moved the files from 02-usart to the root directory since that's the sole place where the action is and that subproject has outgrown its initial title. --- 03-refactor/include/printf.h | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 03-refactor/include/printf.h (limited to '03-refactor/include/printf.h') diff --git a/03-refactor/include/printf.h b/03-refactor/include/printf.h deleted file mode 100644 index ec3eec0..0000000 --- a/03-refactor/include/printf.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef PRINTF_H_ -#define PRINTF_H_ - -#include -#include - -typedef void(*printf_callback_t)(volatile void*, char); - -void printf_format( - const char* fmt, - printf_callback_t callback, - volatile void* callback_closure, - va_list lst); - -#endif /* PRINTF_H_ */ -- cgit