Show source link on exit
parent
8fdf2c402d
commit
6df61b5dda
12
chat.c
12
chat.c
|
@ -19,6 +19,7 @@
|
|||
#include <err.h>
|
||||
#include <errno.h>
|
||||
#include <poll.h>
|
||||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
@ -27,7 +28,14 @@
|
|||
|
||||
#include "chat.h"
|
||||
|
||||
char *prompt(const char *prompt) {
|
||||
static void sigint(int sig) {
|
||||
(void)sig;
|
||||
input(L"/quit");
|
||||
uiHide();
|
||||
exit(EX_OK);
|
||||
}
|
||||
|
||||
static char *prompt(const char *prompt) {
|
||||
char *line = NULL;
|
||||
size_t cap;
|
||||
for (;;) {
|
||||
|
@ -67,6 +75,8 @@ int main(int argc, char *argv[]) {
|
|||
if (!chat.nick) chat.nick = prompt("Name: ");
|
||||
chat.user = strdup(chat.nick);
|
||||
|
||||
signal(SIGINT, sigint);
|
||||
|
||||
uiInit();
|
||||
uiLog("Traveling...");
|
||||
uiDraw();
|
||||
|
|
2
chat.h
2
chat.h
|
@ -14,6 +14,8 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#define SOURCE_URL "https://code.causal.agency/june/chat"
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdlib.h>
|
||||
#include <wchar.h>
|
||||
|
|
Loading…
Reference in New Issue