Skip to content

Instantly share code, notes, and snippets.

View quink-black's full-sized avatar

quink quink-black

View GitHub Profile
@quink-black
quink-black / lang.cpp
Created June 27, 2020 14:20
reformat mov_mdhd_language_map
#include <stdio.h>
#include <stdlib.h>
#include <unordered_map>
static std::unordered_map<int, std::string> MacintoshLanguageCodes{
{0, "English"}, {1, "French"},
{2, "German"}, {3, "Italian"},
{4, "Dutch"}, {5, "Swedish"},
{6, "Spanish"}, {7, "Danish"},