This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[^\S\r\n]+(?=\r?$) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
git ls-files -i -z --exclude-standard | xargs -0 -r git rm --cached |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdint.h> | |
#include <string.h> | |
#include <assert.h> | |
// --------------------------------------------------------------------------------------------------------------------- | |
// these are the actions used within the enum creation macro to produce output per-entry | |
// we break out the _ID ones to avoid triggering errors when using Clang in -Wall mode | |
#define FANCYENUM_DEF_ENUM(_ty) _ty, |