mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
14 lines
181 B
Nim
14 lines
181 B
Nim
|
|
# bug #5237
|
|
|
|
import tables
|
|
import sets
|
|
import sequtils
|
|
|
|
|
|
const EXTENSIONMAP = {
|
|
"c": @["*.c", "*.h"],
|
|
}.toTable()
|
|
|
|
const EXTENSIONS = toSet(concat(toSeq(EXTENSIONMAP.values())))
|