mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2025-07-15 00:52:46 +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
|