mirror of https://github.com/python/cpython
11 lines
275 B
C
11 lines
275 B
C
|
#ifndef _LEXER_BUFFER_H_
|
||
|
#define _LEXER_BUFFER_H_
|
||
|
|
||
|
#include "pyport.h"
|
||
|
|
||
|
void _PyLexer_remember_fstring_buffers(struct tok_state *tok);
|
||
|
void _PyLexer_restore_fstring_buffers(struct tok_state *tok);
|
||
|
int _PyLexer_tok_reserve_buf(struct tok_state *tok, Py_ssize_t size);
|
||
|
|
||
|
#endif
|