├── .gitignore ├── Makefile ├── README.md ├── env_sslog ├── functions_sslog ├── inc ├── get_next_line.h ├── get_time.h ├── print.h └── scholarship_logtime.h ├── init_sslog ├── src ├── calculate │ ├── calculate_average.c │ ├── calculate_logs.c │ ├── current_time.c │ └── get_logs.c ├── gnl │ ├── get_next_line.c │ └── get_next_line_utils.c ├── init_data.c ├── main.c ├── parse_month.c ├── print │ ├── check_logtime.c │ ├── print_logtime.c │ └── progress_bar.c └── utils.c └── sslog /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/README.md -------------------------------------------------------------------------------- /env_sslog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/env_sslog -------------------------------------------------------------------------------- /functions_sslog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/functions_sslog -------------------------------------------------------------------------------- /inc/get_next_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/inc/get_next_line.h -------------------------------------------------------------------------------- /inc/get_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/inc/get_time.h -------------------------------------------------------------------------------- /inc/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/inc/print.h -------------------------------------------------------------------------------- /inc/scholarship_logtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/inc/scholarship_logtime.h -------------------------------------------------------------------------------- /init_sslog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/init_sslog -------------------------------------------------------------------------------- /src/calculate/calculate_average.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/src/calculate/calculate_average.c -------------------------------------------------------------------------------- /src/calculate/calculate_logs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/src/calculate/calculate_logs.c -------------------------------------------------------------------------------- /src/calculate/current_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/src/calculate/current_time.c -------------------------------------------------------------------------------- /src/calculate/get_logs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/src/calculate/get_logs.c -------------------------------------------------------------------------------- /src/gnl/get_next_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/src/gnl/get_next_line.c -------------------------------------------------------------------------------- /src/gnl/get_next_line_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/src/gnl/get_next_line_utils.c -------------------------------------------------------------------------------- /src/init_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/src/init_data.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/src/main.c -------------------------------------------------------------------------------- /src/parse_month.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/src/parse_month.c -------------------------------------------------------------------------------- /src/print/check_logtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/src/print/check_logtime.c -------------------------------------------------------------------------------- /src/print/print_logtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/src/print/print_logtime.c -------------------------------------------------------------------------------- /src/print/progress_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/src/print/progress_bar.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/src/utils.c -------------------------------------------------------------------------------- /sslog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmpark/scholarship_logtime/HEAD/sslog --------------------------------------------------------------------------------