feat(ex00)
This commit is contained in:
parent
b6b8e3bceb
commit
f021ef0fa6
19 changed files with 1404 additions and 0 deletions
13
ex00/include/utils.h
Normal file
13
ex00/include/utils.h
Normal 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 */
|
||||
Loading…
Add table
Add a link
Reference in a new issue