feat(ex02): nice 75C in the room I guess

This commit is contained in:
Maix0 2026-04-19 18:37:19 +02:00
parent 1515ff94b8
commit a801b53938
15 changed files with 919 additions and 0 deletions

12
ex03/include/utils.h Normal file
View file

@ -0,0 +1,12 @@
#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);
#endif /* UTILS_H */