Fix type lenght -> length

This commit is contained in:
Godzil
2023-03-22 18:20:16 +00:00
parent 768515710c
commit 37b24667fd
5 changed files with 32 additions and 32 deletions

View File

@@ -13,10 +13,10 @@ bool checkBit(uint8_t tmp_b, int pos);
void draw_SEG_digit(BITMAP *buf, int x, int y, int color, int size, uint8_t segm_code);
void draw_LED_bin(BITMAP *buf, int x, int y, int color, uint8_t code);
void change_char(char *string, char ch, int pos);
void insert_char(char *string, char ch, int pos, int lenght);
void cut_char(char *string, int pos, int lenght);
void insert_char(char *string, char ch, int pos, int length);
void cut_char(char *string, int pos, int length);
void change_ext(char *s);
void GetText(char *text, BITMAP *buf, int x, int y, int w, int h, int lenght, char *title);
void GetText(char *text, BITMAP *buf, int x, int y, int w, int h, int length, char *title);
void ShowMessage(char *text, BITMAP *buf, int x, int y, int w, int h, char *title);
bool QuestionBox(char *text, BITMAP *buf, int x, int y, int w, int h, char *title, int _color);
void ShowMsgEx(char *text, BITMAP *buf, int x, int y, int w, int h, char *title, int _color);