15 lines
287 B
Python
15 lines
287 B
Python
"""
|
|
Auto-generated Python stub file from base64.py
|
|
Module: base64
|
|
"""
|
|
|
|
|
|
import t, c
|
|
|
|
b64_tab: t.CExtern | list[t.CChar, None]
|
|
b64_dec_tab: t.CExtern | list[t.CInt8T, 80]
|
|
|
|
def b64encode(s: str, out: str) -> t.CSizeT: pass
|
|
|
|
def b64decode(s: str, out: t.CUInt8T | t.CPtr) -> t.CSizeT: pass
|