blob: a03591e7a25932d494d675df442dba46a2516238 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
namespace uncrustify
{
namespace limits
{
static constexpr int MAX_OPTION_NAME_LEN = 32;
static constexpr int AL_SIZE = 8000;
} // namespace limits
} // namespace uncrustify
|