satisfy linter

This commit is contained in:
Night Kaly 2024-02-01 19:18:52 +00:00
parent 94694ce2f7
commit 6e8a21ed66
No known key found for this signature in database
GPG key ID: 8E829D3381CFEBBE
2 changed files with 5 additions and 4 deletions

View file

@ -2,7 +2,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include <limits.h> #include <linux/limits.h>
#include "constants.h" #include "constants.h"

7
rush.c
View file

@ -3,9 +3,10 @@
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <limits.h> #include <linux/limits.h>
#include <time.h> #include <time.h>
#include <stdbool.h> #include <stdbool.h>
#include <signal.h>
#include "color.h" #include "color.h"
#include "constants.h" #include "constants.h"
@ -13,7 +14,7 @@
#include "commands.h" #include "commands.h"
void quit_sig(int sig) { void quit_sig(int sig) {
return 0; exit(0);
} }
void change_terminal_attribute(int option) { void change_terminal_attribute(int option) {
@ -93,7 +94,7 @@ char *readline(char **paths) {
int buf_len = strlen(buffer); int buf_len = strlen(buffer);
//printf("buflen %i\n", buf_len); //printf("buflen %i\n", buf_len);
if (buf_len > 0) { if (buf_len > 0) {
printf("\033[%dD", strlen(buffer)); // move cursor to the beginning printf("\033[%ldD", strlen(buffer)); // move cursor to the beginning
printf("\033[K"); // clear line to the right of cursor printf("\033[K"); // clear line to the right of cursor
} }
// check each character user has input // check each character user has input