blob: 7ada1880df48bfd98ac93f1345e0e957de226b92 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# bug #5237
import tables
import sets
import sequtils
const EXTENSIONMAP = {
"c": @["*.c", "*.h"],
}.toTable()
const EXTENSIONS = toHashSet(concat(toSeq(EXTENSIONMAP.values())))
|