mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2025-06-01 08:09:26 +08:00
7 lines
201 B
Ruby
7 lines
201 B
Ruby
module TypeSanitizer
|
|
def self.sanitize_c_identifier(unsanitized)
|
|
# convert filename to valid C identifier by replacing invalid chars with '_'
|
|
unsanitized.gsub(/[-\/\\\.\,\s]/, '_')
|
|
end
|
|
end
|