Files
uiuc-ece391-mp3/syscalls/ece391support.h
ece391staff 7fc79b62ed MP3 Release
2018-10-15 13:22:04 -05:00

14 lines
519 B
C

#if !defined(ECE391SUPPORT_H)
#define ECE391SUPPORT_H
extern uint32_t ece391_strlen(const uint8_t* s);
extern void ece391_strcpy(uint8_t* dst, const uint8_t* src);
extern void ece391_fdputs(int32_t fd, const uint8_t* s);
extern int32_t ece391_strcmp(const uint8_t* s1, const uint8_t* s2);
extern int32_t ece391_strncmp(const uint8_t* s1, const uint8_t* s2, uint32_t n);
extern uint8_t *ece391_itoa(uint32_t value, uint8_t* buf, int32_t radix);
extern uint8_t *ece391_strrev(uint8_t* s);
#endif /* ECE391SUPPORT_H */