MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / StripNonAlnumChars

Function StripNonAlnumChars

BaseTools/Source/Python/Ecc/c.py:267–272  ·  view source on GitHub ↗
(Str)

Source from the content-addressed store, hash-verified

265 return IdList
266
267def StripNonAlnumChars(Str):
268 StrippedStr = ''
269 for Char in Str:
270 if Char.isalnum() or Char == '_':
271 StrippedStr += Char
272 return StrippedStr
273
274def GetParamList(FuncDeclarator, FuncNameLine=0, FuncNameOffset=0):
275 FuncDeclarator = StripComments(FuncDeclarator)

Callers 1

GetParamListFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected