sed source files to end with 1 new line

This commit is contained in:
pepper-jelly
2021-06-14 08:16:17 +03:00
parent c968fd9aae
commit 0733c39e0c
249 changed files with 432 additions and 187 deletions

View File

@ -64,3 +64,4 @@ ipc_list_get_client(IPCClientList list, int fd)
return NULL;
}

View File

@ -59,3 +59,4 @@ void ipc_list_remove_client(IPCClientList *list, IPCClient *c);
IPCClient *ipc_list_get_client(IPCClientList list, int fd);
#endif // IPC_CLIENT_H_

View File

@ -546,3 +546,4 @@ main(int argc, char *argv[])
return 0;
}

View File

@ -1199,3 +1199,4 @@ ipc_handle_socket_epoll_event(struct epoll_event *ev)
return new_fd;
}

View File

@ -317,3 +317,4 @@ int ipc_handle_client_epoll_event(struct epoll_event *ev, Monitor *mons,
int ipc_handle_socket_epoll_event(struct epoll_event *ev);
#endif /* IPC_H_ */

View File

@ -133,3 +133,4 @@ nullterminate(char **str, size_t *len)
return 0;
}

View File

@ -1,4 +1,5 @@
int normalizepath(const char *path, char **normal);
int mkdirp(const char *path);
int parentdir(const char *path, char **parent);
int nullterminate(char **str, size_t *len);
int nullterminate(char **str, size_t *len);

View File

@ -353,3 +353,4 @@ dump_error_message(yajl_gen gen, const char *reason)
return 0;
}

View File

@ -63,3 +63,4 @@ int dump_focused_state_change_event(yajl_gen gen, const int mon_num,
int dump_error_message(yajl_gen gen, const char *reason);
#endif // YAJL_DUMPS_H_