From 3cce36f24f02146986c11cd9ef6381e36952f866 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 4 Sep 2016 14:20:41 -0400 Subject: Implement typo detection for literals. --- typo.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 typo.h (limited to 'typo.h') diff --git a/typo.h b/typo.h new file mode 100644 index 0000000..fc2392f --- /dev/null +++ b/typo.h @@ -0,0 +1,26 @@ +/********************************************************************* + * bfs * + * Copyright (C) 2016 Tavian Barnes * + * * + * This program is free software. It comes without any warranty, to * + * the extent permitted by applicable law. You can redistribute it * + * and/or modify it under the terms of the Do What The Fuck You Want * + * To Public License, Version 2, as published by Sam Hocevar. See * + * the COPYING file or http://www.wtfpl.net/ for more details. * + *********************************************************************/ + +#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 -- cgit v1.2.3