├── .github ├── dependabot.yml └── workflows │ ├── build-pdf.yml │ └── pre-commit.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── README.adoc └── src ├── c-api.adoc ├── contributors.adoc ├── preamble.adoc ├── prelude.adoc └── riscv-c-api.adoc /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-pdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/.github/workflows/build-pdf.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build/* 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/Makefile -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/README.adoc -------------------------------------------------------------------------------- /src/c-api.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/src/c-api.adoc -------------------------------------------------------------------------------- /src/contributors.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/src/contributors.adoc -------------------------------------------------------------------------------- /src/preamble.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/src/preamble.adoc -------------------------------------------------------------------------------- /src/prelude.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/src/prelude.adoc -------------------------------------------------------------------------------- /src/riscv-c-api.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riscv-non-isa/riscv-c-api-doc/HEAD/src/riscv-c-api.adoc --------------------------------------------------------------------------------