aboutsummaryrefslogtreecommitdiff
path: root/libbb/nuke_str.c
blob: 56b808bc7e0ebf0dc66eaa61aafb2efd7e36d9a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* vi: set sw=4 ts=4: */
/*
 * Utility routines.
 *
 * Copyright (C) 2008 Denys Vlasenko
 *
 * Licensed under GPLv2, see file LICENSE in this source tree.
 */

//kbuild:lib-y += nuke_str.o

#include "libbb.h"

void FAST_FUNC nuke_str(char *str)
{
        if (str) {
		while (*str)
			*str++ = 0;
		/* or: memset(str, 0, strlen(str)); - not as small as above */
	}
}