blob: 13eaa67da317b03a983516911228b7b807f03e24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright © Tavian Barnes <tavianator@tavianator.com>
// SPDX-License-Identifier: 0BSD
#ifndef BFS_TYPO_H
#define BFS_TYPO_H
/**
* Find the "typo" distance between two strings.
*
* @param actual
* The actual string typed by the user.
* @param expected
* The expected valid string.
* @return The distance between the two strings.
*/
int typo_distance(const char *actual, const char *expected);
#endif // BFS_TYPO_H
|