Renamed bterm -> terminal

This commit is contained in:
Bruce Hill 2021-01-28 21:53:48 -08:00
parent e0af178df1
commit 657330ddd6
6 changed files with 11 additions and 9 deletions

View File

@ -8,7 +8,7 @@ CWARN=-Wall -Wpedantic -Wextra -Wsign-conversion -Wtype-limits -Wunused-result
#CFLAGS += -fsanitize=address -fno-omit-frame-pointer
CFLAGS += '-DBB_NAME="$(NAME)"'
CFILES=draw.c bterm.c
CFILES=draw.c terminal.c
OBJFILES=$(CFILES:.c=.o)
all: $(NAME)

1
bb.c
View File

@ -22,6 +22,7 @@
#include "bb.h"
#include "draw.h"
#include "terminal.h"
#ifndef BB_NAME
#define BB_NAME "bb"

4
bb.h
View File

@ -8,7 +8,9 @@
#ifndef FILE_BB__H
#define FILE_BB__H
#include "bterm.h"
#include <limits.h>
#include "terminal.h"
#include "entry.h"
// Macros:

2
draw.c
View File

@ -10,9 +10,9 @@
#include <sys/stat.h>
#include <time.h>
#include "bterm.h"
#include "draw.h"
#include "entry.h"
#include "terminal.h"
#define E_ISDIR(e) (S_ISDIR(S_ISLNK((e)->info.st_mode) ? (e)->linkedmode : (e)->info.st_mode))

View File

@ -1,5 +1,5 @@
/*
* bterm.h
* terminal.c
* Copyright 2019 Bruce Hill
* Released under the MIT License
*
@ -12,7 +12,7 @@
#include <time.h>
#include <unistd.h>
#include "bterm.h"
#include "terminal.h"
typedef struct {
int key;

View File

@ -1,5 +1,5 @@
/*
* bterm.h
* terminal.h
* Copyright 2019 Bruce Hill
* Released under the MIT License
*
@ -7,8 +7,8 @@
* terminal escape sequences.
*/
#ifndef FILE__BTERM_H
#define FILE__BTERM_H
#ifndef FILE__TERMINAL_H
#define FILE__TERMINAL_H
#include <stdio.h>
#include <time.h>
@ -17,7 +17,6 @@
// Maximum time in milliseconds between double clicks
#define DOUBLECLICK_THRESHOLD 200
typedef enum {
// ASCII chars:
KEY_CTRL_AT = 0x00, KEY_CTRL_A, KEY_CTRL_B, KEY_CTRL_C, KEY_CTRL_D,