mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
10 lines
191 B
Python
10 lines
191 B
Python
|
|
def str2user(str):
|
|
"""
|
|
Insert C-style escape characters to string
|
|
|
|
@param str: the input string
|
|
@return: new string with escape characters inserted, or None
|
|
"""
|
|
pass
|