├── .gitignore ├── Makefile ├── README.txt ├── cmdc.c ├── cmdlib.c ├── cmdlib.h ├── garmin_struct.h ├── gimgch.c ├── gimgextract.c ├── gimgfixcmd.c ├── gimginfo.c ├── gimglib.c ├── gimglib.h ├── gimgunlock.c ├── gimgxor.c ├── makefile.nmake ├── sf_dem.c ├── sf_gmp.c ├── sf_lbl.c ├── sf_mar.c ├── sf_mps.c ├── sf_net.c ├── sf_nod.c ├── sf_rgn.c ├── sf_tre.c ├── sf_typ.c ├── stdintvc.h ├── util.c ├── util_indep.c └── util_indep.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/Makefile -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/README.txt -------------------------------------------------------------------------------- /cmdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/cmdc.c -------------------------------------------------------------------------------- /cmdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/cmdlib.c -------------------------------------------------------------------------------- /cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/cmdlib.h -------------------------------------------------------------------------------- /garmin_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/garmin_struct.h -------------------------------------------------------------------------------- /gimgch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/gimgch.c -------------------------------------------------------------------------------- /gimgextract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/gimgextract.c -------------------------------------------------------------------------------- /gimgfixcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/gimgfixcmd.c -------------------------------------------------------------------------------- /gimginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/gimginfo.c -------------------------------------------------------------------------------- /gimglib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/gimglib.c -------------------------------------------------------------------------------- /gimglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/gimglib.h -------------------------------------------------------------------------------- /gimgunlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/gimgunlock.c -------------------------------------------------------------------------------- /gimgxor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/gimgxor.c -------------------------------------------------------------------------------- /makefile.nmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/makefile.nmake -------------------------------------------------------------------------------- /sf_dem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/sf_dem.c -------------------------------------------------------------------------------- /sf_gmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/sf_gmp.c -------------------------------------------------------------------------------- /sf_lbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/sf_lbl.c -------------------------------------------------------------------------------- /sf_mar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/sf_mar.c -------------------------------------------------------------------------------- /sf_mps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/sf_mps.c -------------------------------------------------------------------------------- /sf_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/sf_net.c -------------------------------------------------------------------------------- /sf_nod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/sf_nod.c -------------------------------------------------------------------------------- /sf_rgn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/sf_rgn.c -------------------------------------------------------------------------------- /sf_tre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/sf_tre.c -------------------------------------------------------------------------------- /sf_typ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/sf_typ.c -------------------------------------------------------------------------------- /stdintvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/stdintvc.h -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/util.c -------------------------------------------------------------------------------- /util_indep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/util_indep.c -------------------------------------------------------------------------------- /util_indep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyongzheng/gimgtools/HEAD/util_indep.h --------------------------------------------------------------------------------