File indexing completed on 2024-04-28 05:50:09

0001 /*
0002  * SPDX-License-Identifier: GPL-3.0-or-later
0003  * SPDX-FileCopyrightText: 2019 Johan Ouwerkerk <jm.ouwerkerk@gmail.com>
0004  */
0005 
0006 #ifndef VALIDATOR_UTIL_H
0007 #define VALIDATOR_UTIL_H
0008 
0009 #include <QString>
0010 
0011 namespace validators
0012 {
0013     QString simplify_spaces(QString &input);
0014     QString strip_spaces(QString &input);
0015 }
0016 
0017 #endif