remove unused function and typedef (#199)
byteorder_t and size_readable is not used anywhere within the code. byteorder_t seems to be a remain from some time sxiv handled exif data itself instead of relying on a library, introduced in691c6d7
, and probably became irrelevant when libexif was added as dependency again. And size_readable from some time it displayed the file size in the window title, introduced inbad9a70
.
This commit is contained in:
6
nsxiv.h
6
nsxiv.h
@ -55,11 +55,6 @@
|
||||
(tv)->tv_usec += (t) % 1000 * 1000; \
|
||||
}
|
||||
|
||||
typedef enum {
|
||||
BO_BIG_ENDIAN,
|
||||
BO_LITTLE_ENDIAN
|
||||
} byteorder_t;
|
||||
|
||||
typedef enum {
|
||||
MODE_ALL,
|
||||
MODE_IMAGE,
|
||||
@ -352,7 +347,6 @@ void* emalloc(size_t);
|
||||
void* erealloc(void*, size_t);
|
||||
char* estrdup(const char*);
|
||||
void error(int, int, const char*, ...);
|
||||
void size_readable(float*, const char**);
|
||||
int r_opendir(r_dir_t*, const char*, bool);
|
||||
int r_closedir(r_dir_t*);
|
||||
char* r_readdir(r_dir_t*, bool);
|
||||
|
Reference in New Issue
Block a user