style: align header and c file last line to be empty
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
9e4c9eb0ea
commit
d81aeb1782
@ -33,4 +33,4 @@
|
|||||||
|
|
||||||
#define WAITUI_VERSION_LONG @PROJECT_VERSION_LONG@L
|
#define WAITUI_VERSION_LONG @PROJECT_VERSION_LONG@L
|
||||||
|
|
||||||
#endif //WAITUI_VERSION_H
|
#endif //WAITUI_VERSION_H
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
set(project_version 0.0.1)
|
set(project_version 0.1.1)
|
||||||
set(project_description "waitui executable")
|
set(project_description "waitui executable")
|
||||||
set(project_homepage "http://example.com")
|
set(project_homepage "http://example.com")
|
||||||
set(project_prerelease "")
|
set(project_prerelease "")
|
||||||
@ -160,4 +160,4 @@ int main(int argc, char **argv) {
|
|||||||
waitui_log_debug("waitui execution done");
|
waitui_log_debug("waitui execution done");
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -19,4 +19,4 @@ target_sources(list
|
|||||||
"include/waitui/list_generic_impl.h"
|
"include/waitui/list_generic_impl.h"
|
||||||
)
|
)
|
||||||
|
|
||||||
target_include_directories(list PUBLIC "include")
|
target_include_directories(list PUBLIC "include")
|
||||||
|
|||||||
@ -127,4 +127,4 @@ extern void *waitui_list_iter_next(waitui_list_iter *this);
|
|||||||
*/
|
*/
|
||||||
extern void waitui_list_iter_destroy(waitui_list_iter **this);
|
extern void waitui_list_iter_destroy(waitui_list_iter **this);
|
||||||
|
|
||||||
#endif//WAITUI_LIST_H
|
#endif//WAITUI_LIST_H
|
||||||
|
|||||||
@ -75,4 +75,4 @@
|
|||||||
kind##_LIST_ITER_NEXT(type); \
|
kind##_LIST_ITER_NEXT(type); \
|
||||||
kind##_LIST_ITER_DESTROY(type);
|
kind##_LIST_ITER_DESTROY(type);
|
||||||
|
|
||||||
#endif//WAITUI_LIST_GENERIC_H
|
#endif//WAITUI_LIST_GENERIC_H
|
||||||
|
|||||||
@ -76,4 +76,4 @@
|
|||||||
waitui_list_iter_destroy((waitui_list_iter **) this); \
|
waitui_list_iter_destroy((waitui_list_iter **) this); \
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif//WAITUI_LIST_GENERIC_IMPL_H
|
#endif//WAITUI_LIST_GENERIC_IMPL_H
|
||||||
|
|||||||
@ -216,4 +216,4 @@ void waitui_list_iter_destroy(waitui_list_iter **this) {
|
|||||||
|
|
||||||
free(*this);
|
free(*this);
|
||||||
*this = NULL;
|
*this = NULL;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -127,4 +127,4 @@ extern int waitui_log_addFile(FILE *file, waitui_log_level level);
|
|||||||
extern void waitui_log_writeLog(waitui_log_level level, const char *file,
|
extern void waitui_log_writeLog(waitui_log_level level, const char *file,
|
||||||
int line, const char *format, ...);
|
int line, const char *format, ...);
|
||||||
|
|
||||||
#endif//WAITUI_LOG_H
|
#endif//WAITUI_LOG_H
|
||||||
|
|||||||
@ -221,4 +221,4 @@ void waitui_log_writeLog(waitui_log_level level, const char *file, int line,
|
|||||||
}
|
}
|
||||||
|
|
||||||
waitui_log_unlock();
|
waitui_log_unlock();
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user