mirror of
https://github.com/javalsai/lidm.git
synced 2025-09-01 02:47:59 +02:00
lint(tidy): some clang-tidy work
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#ifndef _EFIELDH_
|
||||
#define _EFIELDH_
|
||||
#ifndef EFIELDH_
|
||||
#define EFIELDH_
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <sys/types.h>
|
||||
@@ -10,9 +10,9 @@ struct editable_field {
|
||||
char content[255];
|
||||
};
|
||||
|
||||
struct editable_field field_new(char*);
|
||||
void field_trim(struct editable_field*, u_char);
|
||||
void field_update(struct editable_field*, char*);
|
||||
bool field_seek(struct editable_field*, char);
|
||||
struct editable_field field_new(char* content);
|
||||
void field_trim(struct editable_field* self, u_char pos);
|
||||
void field_update(struct editable_field* self, char* update);
|
||||
bool field_seek(struct editable_field* self, char seek);
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user