feat(ex02): done

This commit is contained in:
Maix0 2026-04-21 16:18:54 +02:00
commit b6b8e3bceb
21 changed files with 1342 additions and 0 deletions

13
ex02/include/utils.h Normal file
View file

@ -0,0 +1,13 @@
#ifndef UTILS_H
#define UTILS_H
#include "mystd.h"
void delay_ms(uint16_t count);
void ft_bzero(void* data, uint16_t size);
uint8_t ft_stridx(const char* str, char chr);
uint8_t ft_ftoa(float val, char* out, uint16_t precision);
#endif /* UTILS_H */