#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<unistd.h>
#include<getopt.h>
#include<dirent.h>
#include"locations.h"

#define YEARS_UTC	1900

/* Command line arguments [Normal, Long, All] */
#define	NORMAL		0x01
#define	LONG		0x02
#define ALL		0x04
#define NORMAL_ALL	NORMAL | ALL
#define LONG_ALL	LONG | ALL

/* Functions Prototypes */
int selector();
int hide_or_not(char *);
void print_ls(int, struct dirent **, int);
int get_kilobytes(int, struct dirent **);

enum{
	HIDE,	/* 0 */
	SHOW	/* 1 */
};

