1 
2 /* Copyright (C) 2010-2019 by The D Language Foundation, All Rights Reserved
3  * http://www.digitalmars.com
4  * Distributed under the Boost Software License, Version 1.0.
5  * (See accompanying file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
6  * https://github.com/D-Programming-Language/dmd/blob/master/src/root/speller.h
7  */
8 
9 #pragma once
10 
11 typedef void *(fp_speller_t)(void *, const char *, int*);
12 
13 extern const char idchars[];
14 
15 void *speller(const char *seed, fp_speller_t fp, void *fparg, const char *charset);
16 
17