blob: cc425839fb36aa8a8766091b77d8659aa535b1c0 [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersenaad1a882001-03-16 22:47:14 +00006 *
Bernhard Reutner-Fischerb1629b12006-05-19 19:29:19 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersenaad1a882001-03-16 22:47:14 +00008 */
9
Eric Andersenaad1a882001-03-16 22:47:14 +000010#include "libbb.h"
11
Eric Andersenc7bda1c2004-03-15 08:29:22 +000012/* Like strncpy but make sure the resulting string is always 0 terminated. */
Denis Vlasenko5d61e712007-09-27 10:09:59 +000013char *safe_strncpy(char *dst, const char *src, size_t size)
Eric Andersenc7bda1c2004-03-15 08:29:22 +000014{
Denis Vlasenkode59c0f2006-10-05 22:50:22 +000015 if (!size) return dst;
16 dst[--size] = '\0';
17 return strncpy(dst, src, size);
Eric Andersenaad1a882001-03-16 22:47:14 +000018}