clangformat everything
This commit is contained in:
13
tests/mocs.c
13
tests/mocs.c
@@ -12,7 +12,12 @@ int tftp_init(struct tftp_context* context) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
void lcd_display_text(const char* text, uint16_t x_pos, uint16_t y_pos, uint32_t color, uint32_t bg_color, sFONT* font) {
|
||||
void lcd_display_text(const char* text,
|
||||
uint16_t x_pos,
|
||||
uint16_t y_pos,
|
||||
uint32_t color,
|
||||
uint32_t bg_color,
|
||||
sFONT* font) {
|
||||
UNUSED(color);
|
||||
UNUSED(bg_color);
|
||||
UNUSED(font);
|
||||
@@ -54,19 +59,19 @@ struct tcp_pcb* tcp_new(void) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
err_t tcp_bind(void *pcb, void *ipaddr, uint16_t port) {
|
||||
err_t tcp_bind(void* pcb, void* ipaddr, uint16_t port) {
|
||||
UNUSED(pcb);
|
||||
UNUSED(ipaddr);
|
||||
UNUSED(port);
|
||||
return ERR_OK;
|
||||
}
|
||||
|
||||
struct tcp_pcb* tcp_listen(void *pcb) {
|
||||
struct tcp_pcb* tcp_listen(void* pcb) {
|
||||
UNUSED(pcb);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void tcp_accept(void *pcb, tcp_accept_fn arg) {
|
||||
void tcp_accept(void* pcb, tcp_accept_fn arg) {
|
||||
UNUSED(pcb);
|
||||
UNUSED(arg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user