├── .travis.yml ├── CHANGES ├── Docs ├── ConfigFile.txt ├── HowToAddSites.txt ├── Proxys.txt ├── Radio.txt └── Usage.txt ├── INSTALL ├── LICENCE ├── Makefile ├── Makefile.in ├── README.md ├── autom4te.cache ├── output.0 ├── requests └── traces.0 ├── common.c ├── common.h ├── configure ├── configure.ac ├── containerfiles.c ├── containerfiles.h ├── display.c ├── display.h ├── download.c ├── download.h ├── extract_text.c ├── extract_text.h ├── install-sh ├── libUseful ├── CommandLineParser.c ├── CommandLineParser.h ├── Compression.c ├── Compression.h ├── ConnectionChain.c ├── ConnectionChain.h ├── DataParser.c ├── DataParser.h ├── DataProcessing.c ├── DataProcessing.h ├── Encodings.c ├── Encodings.h ├── Errors.c ├── Errors.h ├── Expect.c ├── Expect.h ├── FileSystem.c ├── FileSystem.h ├── GeneralFunctions.c ├── GeneralFunctions.h ├── Hash.c ├── Hash.h ├── Http.c ├── Http.h ├── KeyCodes.h ├── LICENCE ├── LibSettings.c ├── LibSettings.h ├── List.c ├── List.h ├── Log.c ├── Log.h ├── Makefile ├── Makefile.in ├── Markup.c ├── Markup.h ├── OAuth.c ├── OAuth.h ├── OpenSSL.c ├── OpenSSL.h ├── PatternMatch.c ├── PatternMatch.h ├── Process.c ├── Process.h ├── Pty.c ├── Pty.h ├── Quickstart.txt ├── README.md ├── RawData.c ├── RawData.h ├── SecureMem.c ├── SecureMem.h ├── Smtp.c ├── Smtp.h ├── Socket.c ├── Socket.h ├── SpawnPrograms.c ├── SpawnPrograms.h ├── Ssh.c ├── Ssh.h ├── Stream.c ├── Stream.h ├── String.c ├── String.h ├── SysInfo.c ├── SysInfo.h ├── Terminal.c ├── Terminal.h ├── Time.c ├── Time.h ├── Tokenizer.c ├── Tokenizer.h ├── URL.c ├── URL.h ├── Unicode.c ├── Unicode.h ├── UnixSocket.c ├── UnixSocket.h ├── Vars.c ├── Vars.h ├── base64.c ├── base64.h ├── config.log ├── config.status ├── configure ├── configure.ac ├── crc32.c ├── crc32.h ├── defines.h ├── examples │ ├── Errors.c │ ├── FileCopy.c │ ├── Makefile │ ├── Maps.c │ ├── ParseRSS.c │ ├── README │ ├── SSLClient.c │ ├── Smtp.c │ ├── SpawnContainer.c │ ├── TTYTest.c │ ├── TermBar.c │ ├── Terminal.c │ ├── Tokenize.c │ ├── Vars.c │ └── pattest.c ├── includes.h ├── inet.c ├── inet.h ├── install-sh ├── jh_ref.c ├── jh_ref.h ├── libUseful.h ├── md5-global.h ├── md5.h ├── md5c.c ├── sha1.c ├── sha1.h ├── sha2.c ├── sha2.h ├── whirlpool.c └── whirlpool.h ├── main.c ├── outputfiles.c ├── outputfiles.h ├── players.c ├── players.h ├── selectformat.c ├── selectformat.h ├── servicetypes.c ├── servicetypes.h ├── settings.c ├── settings.h ├── youtube.c └── youtube.h /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/CHANGES -------------------------------------------------------------------------------- /Docs/ConfigFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/Docs/ConfigFile.txt -------------------------------------------------------------------------------- /Docs/HowToAddSites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/Docs/HowToAddSites.txt -------------------------------------------------------------------------------- /Docs/Proxys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/Docs/Proxys.txt -------------------------------------------------------------------------------- /Docs/Radio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/Docs/Radio.txt -------------------------------------------------------------------------------- /Docs/Usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/Docs/Usage.txt -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/README.md -------------------------------------------------------------------------------- /autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/autom4te.cache/output.0 -------------------------------------------------------------------------------- /autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/autom4te.cache/requests -------------------------------------------------------------------------------- /autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/common.c -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/common.h -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/configure.ac -------------------------------------------------------------------------------- /containerfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/containerfiles.c -------------------------------------------------------------------------------- /containerfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/containerfiles.h -------------------------------------------------------------------------------- /display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/display.c -------------------------------------------------------------------------------- /display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/display.h -------------------------------------------------------------------------------- /download.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/download.c -------------------------------------------------------------------------------- /download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/download.h -------------------------------------------------------------------------------- /extract_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/extract_text.c -------------------------------------------------------------------------------- /extract_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/extract_text.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/install-sh -------------------------------------------------------------------------------- /libUseful/CommandLineParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/CommandLineParser.c -------------------------------------------------------------------------------- /libUseful/CommandLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/CommandLineParser.h -------------------------------------------------------------------------------- /libUseful/Compression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Compression.c -------------------------------------------------------------------------------- /libUseful/Compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Compression.h -------------------------------------------------------------------------------- /libUseful/ConnectionChain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/ConnectionChain.c -------------------------------------------------------------------------------- /libUseful/ConnectionChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/ConnectionChain.h -------------------------------------------------------------------------------- /libUseful/DataParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/DataParser.c -------------------------------------------------------------------------------- /libUseful/DataParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/DataParser.h -------------------------------------------------------------------------------- /libUseful/DataProcessing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/DataProcessing.c -------------------------------------------------------------------------------- /libUseful/DataProcessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/DataProcessing.h -------------------------------------------------------------------------------- /libUseful/Encodings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Encodings.c -------------------------------------------------------------------------------- /libUseful/Encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Encodings.h -------------------------------------------------------------------------------- /libUseful/Errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Errors.c -------------------------------------------------------------------------------- /libUseful/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Errors.h -------------------------------------------------------------------------------- /libUseful/Expect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Expect.c -------------------------------------------------------------------------------- /libUseful/Expect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Expect.h -------------------------------------------------------------------------------- /libUseful/FileSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/FileSystem.c -------------------------------------------------------------------------------- /libUseful/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/FileSystem.h -------------------------------------------------------------------------------- /libUseful/GeneralFunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/GeneralFunctions.c -------------------------------------------------------------------------------- /libUseful/GeneralFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/GeneralFunctions.h -------------------------------------------------------------------------------- /libUseful/Hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Hash.c -------------------------------------------------------------------------------- /libUseful/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Hash.h -------------------------------------------------------------------------------- /libUseful/Http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Http.c -------------------------------------------------------------------------------- /libUseful/Http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Http.h -------------------------------------------------------------------------------- /libUseful/KeyCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/KeyCodes.h -------------------------------------------------------------------------------- /libUseful/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/LICENCE -------------------------------------------------------------------------------- /libUseful/LibSettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/LibSettings.c -------------------------------------------------------------------------------- /libUseful/LibSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/LibSettings.h -------------------------------------------------------------------------------- /libUseful/List.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/List.c -------------------------------------------------------------------------------- /libUseful/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/List.h -------------------------------------------------------------------------------- /libUseful/Log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Log.c -------------------------------------------------------------------------------- /libUseful/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Log.h -------------------------------------------------------------------------------- /libUseful/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Makefile -------------------------------------------------------------------------------- /libUseful/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Makefile.in -------------------------------------------------------------------------------- /libUseful/Markup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Markup.c -------------------------------------------------------------------------------- /libUseful/Markup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Markup.h -------------------------------------------------------------------------------- /libUseful/OAuth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/OAuth.c -------------------------------------------------------------------------------- /libUseful/OAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/OAuth.h -------------------------------------------------------------------------------- /libUseful/OpenSSL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/OpenSSL.c -------------------------------------------------------------------------------- /libUseful/OpenSSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/OpenSSL.h -------------------------------------------------------------------------------- /libUseful/PatternMatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/PatternMatch.c -------------------------------------------------------------------------------- /libUseful/PatternMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/PatternMatch.h -------------------------------------------------------------------------------- /libUseful/Process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Process.c -------------------------------------------------------------------------------- /libUseful/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Process.h -------------------------------------------------------------------------------- /libUseful/Pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Pty.c -------------------------------------------------------------------------------- /libUseful/Pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Pty.h -------------------------------------------------------------------------------- /libUseful/Quickstart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Quickstart.txt -------------------------------------------------------------------------------- /libUseful/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/README.md -------------------------------------------------------------------------------- /libUseful/RawData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/RawData.c -------------------------------------------------------------------------------- /libUseful/RawData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/RawData.h -------------------------------------------------------------------------------- /libUseful/SecureMem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/SecureMem.c -------------------------------------------------------------------------------- /libUseful/SecureMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/SecureMem.h -------------------------------------------------------------------------------- /libUseful/Smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Smtp.c -------------------------------------------------------------------------------- /libUseful/Smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Smtp.h -------------------------------------------------------------------------------- /libUseful/Socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Socket.c -------------------------------------------------------------------------------- /libUseful/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Socket.h -------------------------------------------------------------------------------- /libUseful/SpawnPrograms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/SpawnPrograms.c -------------------------------------------------------------------------------- /libUseful/SpawnPrograms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/SpawnPrograms.h -------------------------------------------------------------------------------- /libUseful/Ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Ssh.c -------------------------------------------------------------------------------- /libUseful/Ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Ssh.h -------------------------------------------------------------------------------- /libUseful/Stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Stream.c -------------------------------------------------------------------------------- /libUseful/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Stream.h -------------------------------------------------------------------------------- /libUseful/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/String.c -------------------------------------------------------------------------------- /libUseful/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/String.h -------------------------------------------------------------------------------- /libUseful/SysInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/SysInfo.c -------------------------------------------------------------------------------- /libUseful/SysInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/SysInfo.h -------------------------------------------------------------------------------- /libUseful/Terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Terminal.c -------------------------------------------------------------------------------- /libUseful/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Terminal.h -------------------------------------------------------------------------------- /libUseful/Time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Time.c -------------------------------------------------------------------------------- /libUseful/Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Time.h -------------------------------------------------------------------------------- /libUseful/Tokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Tokenizer.c -------------------------------------------------------------------------------- /libUseful/Tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Tokenizer.h -------------------------------------------------------------------------------- /libUseful/URL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/URL.c -------------------------------------------------------------------------------- /libUseful/URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/URL.h -------------------------------------------------------------------------------- /libUseful/Unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Unicode.c -------------------------------------------------------------------------------- /libUseful/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Unicode.h -------------------------------------------------------------------------------- /libUseful/UnixSocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/UnixSocket.c -------------------------------------------------------------------------------- /libUseful/UnixSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/UnixSocket.h -------------------------------------------------------------------------------- /libUseful/Vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Vars.c -------------------------------------------------------------------------------- /libUseful/Vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/Vars.h -------------------------------------------------------------------------------- /libUseful/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/base64.c -------------------------------------------------------------------------------- /libUseful/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/base64.h -------------------------------------------------------------------------------- /libUseful/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/config.log -------------------------------------------------------------------------------- /libUseful/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/config.status -------------------------------------------------------------------------------- /libUseful/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/configure -------------------------------------------------------------------------------- /libUseful/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/configure.ac -------------------------------------------------------------------------------- /libUseful/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/crc32.c -------------------------------------------------------------------------------- /libUseful/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/crc32.h -------------------------------------------------------------------------------- /libUseful/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/defines.h -------------------------------------------------------------------------------- /libUseful/examples/Errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/examples/Errors.c -------------------------------------------------------------------------------- /libUseful/examples/FileCopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/examples/FileCopy.c -------------------------------------------------------------------------------- /libUseful/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/examples/Makefile -------------------------------------------------------------------------------- /libUseful/examples/Maps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/examples/Maps.c -------------------------------------------------------------------------------- /libUseful/examples/ParseRSS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/examples/ParseRSS.c -------------------------------------------------------------------------------- /libUseful/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/examples/README -------------------------------------------------------------------------------- /libUseful/examples/SSLClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/examples/SSLClient.c -------------------------------------------------------------------------------- /libUseful/examples/Smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/examples/Smtp.c -------------------------------------------------------------------------------- /libUseful/examples/SpawnContainer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/examples/SpawnContainer.c -------------------------------------------------------------------------------- /libUseful/examples/TTYTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/examples/TTYTest.c -------------------------------------------------------------------------------- /libUseful/examples/TermBar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/examples/TermBar.c -------------------------------------------------------------------------------- /libUseful/examples/Terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/examples/Terminal.c -------------------------------------------------------------------------------- /libUseful/examples/Tokenize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/examples/Tokenize.c -------------------------------------------------------------------------------- /libUseful/examples/Vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/examples/Vars.c -------------------------------------------------------------------------------- /libUseful/examples/pattest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/examples/pattest.c -------------------------------------------------------------------------------- /libUseful/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/includes.h -------------------------------------------------------------------------------- /libUseful/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/inet.c -------------------------------------------------------------------------------- /libUseful/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/inet.h -------------------------------------------------------------------------------- /libUseful/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/install-sh -------------------------------------------------------------------------------- /libUseful/jh_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/jh_ref.c -------------------------------------------------------------------------------- /libUseful/jh_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/jh_ref.h -------------------------------------------------------------------------------- /libUseful/libUseful.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/libUseful.h -------------------------------------------------------------------------------- /libUseful/md5-global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/md5-global.h -------------------------------------------------------------------------------- /libUseful/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/md5.h -------------------------------------------------------------------------------- /libUseful/md5c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/md5c.c -------------------------------------------------------------------------------- /libUseful/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/sha1.c -------------------------------------------------------------------------------- /libUseful/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/sha1.h -------------------------------------------------------------------------------- /libUseful/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/sha2.c -------------------------------------------------------------------------------- /libUseful/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/sha2.h -------------------------------------------------------------------------------- /libUseful/whirlpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/whirlpool.c -------------------------------------------------------------------------------- /libUseful/whirlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/libUseful/whirlpool.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/main.c -------------------------------------------------------------------------------- /outputfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/outputfiles.c -------------------------------------------------------------------------------- /outputfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/outputfiles.h -------------------------------------------------------------------------------- /players.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/players.c -------------------------------------------------------------------------------- /players.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/players.h -------------------------------------------------------------------------------- /selectformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/selectformat.c -------------------------------------------------------------------------------- /selectformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/selectformat.h -------------------------------------------------------------------------------- /servicetypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/servicetypes.c -------------------------------------------------------------------------------- /servicetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/servicetypes.h -------------------------------------------------------------------------------- /settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/settings.c -------------------------------------------------------------------------------- /settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/settings.h -------------------------------------------------------------------------------- /youtube.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/youtube.c -------------------------------------------------------------------------------- /youtube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColumPaget/Movgrab/HEAD/youtube.h --------------------------------------------------------------------------------