MCPcopy Create free account
hub / github.com/capstone-engine/capstone / camelize

Function camelize

bindings/const_generator.py:163–165  ·  view source on GitHub ↗
(name)

Source from the content-addressed store, hash-verified

161MARKUP = '//>'
162
163def camelize(name):
164 parts = name.split('_')
165 return parts[0].lower() + ''.join(map(str.capitalize, parts[1:]))
166
167def pascalize(name):
168 parts = name.split('_')

Callers 1

pascalize_constFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…