Parses .osu files.
In your repo root folder
git submodule add https://github.com/lakazatong/beatmap_parser libs/beatmap_parser
In your repo
#include "libs/beatmap_parser/parser.h"
In the libs folder
#include "../beatmap_parser/parser.h"
Uncomment test.c and write your tests, then run:
make && test.exe
You would need a way to run make on Windows. Remove the .exe extension in the Makefile for Linux.
git submodule update --remote --merge
git submodule deinit -f path/to/submodule
rm -rf .git/modules/path/to/submodule
git rm -f path/to/submodule
Taken from here.