summaryrefslogtreecommitdiff
path: root/project/Core/Inc/Homework/printf.h
blob: a31119a1c4a6e2fc15fbbdda5bb2544d413e3e6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * printf.h
 *
 *  Created on: Sep 5, 2025
 *      Author: sowgro
 */

#ifndef INC_ACTIVITIES_PRINTF_H_
#define INC_ACTIVITIES_PRINTF_H_

int putchar(int value);
int printf(const char *format, ...);
int puts(const char *string);

#endif /* INC_ACTIVITIES_PRINTF_H_ */