mirror of
https://github.com/alfarom256/StinkyLoader
synced 2026-06-08 13:06:45 +00:00
5 lines
138 B
Python
5 lines
138 B
Python
def strify(s):
|
|
x = '{{ {} }}'.format(
|
|
','.join("'{}'".format(b) for b in s)
|
|
)
|
|
print("char str{}[] = {};".format(s, x)) |