A Python tool to automatically fix #include "@/..."
paths in C/C++ source files by converting them to proper relative paths.
python3 c-importpath-fixer.py [project-root]
By default, it scans the current directory. You can optionally pass the root of the project.
Before:
#include "@/include/myheader.h"
After:
#include "../include/myheader.h"
MIT
Copyright 2025, Max Base