Remove unused function nspaces32() from tools module #1

This commit is contained in:
Thomas Jensen 2021-02-03 09:44:32 +01:00
parent 91d1971cca
commit 53e7782b5f
No known key found for this signature in database
GPG Key ID: A4ACEE270D0FB7DB
2 changed files with 0 additions and 11 deletions

View File

@ -487,14 +487,4 @@ char *nspaces(const size_t n)
uint32_t *nspaces32(const size_t n)
{
uint32_t *spaces = (uint32_t *) malloc((n + 1) * sizeof(uint32_t));
u32_set(spaces, char_space, n);
u32_set(spaces + n, char_nul, 1);
return spaces;
}
/*EOF*/ /* vim: set sw=4: */

View File

@ -64,7 +64,6 @@ char *tabbify_indent(const size_t lineno, char *indentspc, const size_t indentsp
char *nspaces(const size_t n);
uint32_t *nspaces32(const size_t n);
#endif