HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
15 #ifdef LIF_STAND_ALONE
19 #include "user_config.h"
25 #include "../lib/parsing.c"
26 #include "../gpib/vector.c"
27 #include "../gpib/drives_sup.c"
46 const char *
__WDay[] = {
"Sun",
"Mon",
"Tue",
"Wed",
"Thu",
"Fri",
"Sat",
"BAD"};
54 "Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul", \
55 "Aug",
"Sep",
"Oct",
"Nov",
"Dec",
"BAD"
71 snprintf(buf,32,
"%s %s %2d %02d:%02d:%02d %4d",
83 struct tm *_gmtime64 (
const __time64_t *);
87 const __time64_t ltime =
mktime(a_tm);
88 struct tm *tm_val =_gmtime64 ((
const __time64_t *) <ime);
103 printf(
"Stand alone version of LIF/TELEDISK utilities for linux\n");
104 printf(
"HP85 Disk and Device Emulator\n");
105 printf(
" (c) 2014-2020 by Mike Gore\n");
106 printf(
" GNU version 3\n");
107 printf(
"-> https://github.com/magore/hp85disk\n");
108 printf(
" GIT last pushed: %s\n", GIT_VERSION);
109 printf(
" Last updated file: %s\n", LOCAL_MOD);
114 int main(
int argc,
char *argv[])
142 return ( !
td02lif(argc, argv) );
144 printf(
"td02lif not enabled\n");
const char * __Month[]
Short Name or each Month in a year.
const char * __WDay[]
Short Name of each Day in a week.
MEMSPACE int printf(const char *format,...)
MEMSPACE void lif_help(int full)
Help Menu for User invoked GPIB functions and tasks See: int gpib_tests(char *str)
int debuglevel
Debug flag - used to log GPIB and emulator messages.
MEMSPACE int MATCHI(char *str, char *pat)
Compare two strings without case.
MEMSPACE time_t timegm(tm_t *t)
Convert tm_t structure as GMT time into GMT seconds since 1900. All calculactions are in GMT regardle...
MEMSPACE tm_t * gmtime(time_t *tp)
Convert epoch GMT time_t *tp into POSIX static tm_t *t.
MEMSPACE char * asctime_r(tm_t *t, char *buf)
Convert tm_t *t structure into POSIX asctime() ASCII string *buf.
MEMSPACE int lif_tests(int argc, char *argv[])
LIF user tests.
MEMSPACE char * basename(char *str)
POSIX Basename of filename.
int main(void)
main() for gpib project
LIF file utilities - utilities extracted from hp85disk project for stand alone use.
MEMSPACE time_t mktime(tm_t *t)
convert tm_t structure to time_t local time epoch
uint32_t time_t
type of EPOCH result.
int td02lif(int argc, char *argv[])
Convert a Teledisk LIF formatted disk image into a pure LIF image.
#define snprintf(s, size, format, args...)
MEMSPACE tm_t * gmtime_r(time_t *t, tm_t *result)
Convert epoch GMT time_t *tp into POSIX tm_t *result.