Move xAsprintf, xSnprintf and xStrdup to StringUtils.h

This commit is contained in:
Benny Baumann
2020-09-19 20:22:34 +02:00
parent 7cd093ce95
commit c6f04a9c5d
22 changed files with 101 additions and 75 deletions

View File

@ -5,11 +5,10 @@ Released under the GNU GPLv2, see the COPYING file
in the source distribution for its full text.
*/
#include "UsersTable.h"
#include "XAlloc.h"
#include "config.h"
#include "UsersTable.h"
#include <stdio.h>
#include <string.h>
#include <strings.h>
@ -18,6 +17,9 @@ in the source distribution for its full text.
#include <stdlib.h>
#include <assert.h>
#include "StringUtils.h"
#include "XAlloc.h"
UsersTable* UsersTable_new() {
UsersTable* this;