├── .gitignore ├── Progressbar.xcodeproj └── project.pbxproj ├── Progressbar ├── Dependencies │ └── progressbar │ │ ├── Doxyfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.mdown │ │ ├── example_output │ │ ├── demo.png │ │ └── demo@2x.png │ │ ├── include │ │ ├── progressbar.h │ │ └── statusbar.h │ │ ├── lib │ │ ├── progressbar.c │ │ └── statusbar.c │ │ ├── package.json │ │ └── test │ │ └── demo.c ├── Example │ └── Progressbar-Example.playground │ │ ├── Contents.swift │ │ └── contents.xcplayground ├── Info.plist ├── Progressbar.h ├── Wrapper │ └── Progressbar.swift └── module.map └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/.gitignore -------------------------------------------------------------------------------- /Progressbar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Progressbar/Dependencies/progressbar/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Dependencies/progressbar/Doxyfile -------------------------------------------------------------------------------- /Progressbar/Dependencies/progressbar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Dependencies/progressbar/LICENSE -------------------------------------------------------------------------------- /Progressbar/Dependencies/progressbar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Dependencies/progressbar/Makefile -------------------------------------------------------------------------------- /Progressbar/Dependencies/progressbar/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Dependencies/progressbar/README.mdown -------------------------------------------------------------------------------- /Progressbar/Dependencies/progressbar/example_output/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Dependencies/progressbar/example_output/demo.png -------------------------------------------------------------------------------- /Progressbar/Dependencies/progressbar/example_output/demo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Dependencies/progressbar/example_output/demo@2x.png -------------------------------------------------------------------------------- /Progressbar/Dependencies/progressbar/include/progressbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Dependencies/progressbar/include/progressbar.h -------------------------------------------------------------------------------- /Progressbar/Dependencies/progressbar/include/statusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Dependencies/progressbar/include/statusbar.h -------------------------------------------------------------------------------- /Progressbar/Dependencies/progressbar/lib/progressbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Dependencies/progressbar/lib/progressbar.c -------------------------------------------------------------------------------- /Progressbar/Dependencies/progressbar/lib/statusbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Dependencies/progressbar/lib/statusbar.c -------------------------------------------------------------------------------- /Progressbar/Dependencies/progressbar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Dependencies/progressbar/package.json -------------------------------------------------------------------------------- /Progressbar/Dependencies/progressbar/test/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Dependencies/progressbar/test/demo.c -------------------------------------------------------------------------------- /Progressbar/Example/Progressbar-Example.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Example/Progressbar-Example.playground/Contents.swift -------------------------------------------------------------------------------- /Progressbar/Example/Progressbar-Example.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Example/Progressbar-Example.playground/contents.xcplayground -------------------------------------------------------------------------------- /Progressbar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Info.plist -------------------------------------------------------------------------------- /Progressbar/Progressbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Progressbar.h -------------------------------------------------------------------------------- /Progressbar/Wrapper/Progressbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/Wrapper/Progressbar.swift -------------------------------------------------------------------------------- /Progressbar/module.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/Progressbar/module.map -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfdrake/swift-framework-c-library-example/HEAD/README.md --------------------------------------------------------------------------------