Skip to content

Bugfix: Changed mbedtls function names to prevent symbol conflicts #6

Bugfix: Changed mbedtls function names to prevent symbol conflicts

Bugfix: Changed mbedtls function names to prevent symbol conflicts #6

Workflow file for this run

name: Clang-Format Lint
on: [push, pull_request]
jobs:
clang-format:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Run clang-format
run: |
find . -type f \( -name '*.c' -o -name '*.cpp' -o -name '*.h' \) -print0 | xargs -0 -n1 clang-format --style=file --dry-run --Werror