File: DStrInit.c

package info (click to toggle)
ncftp 2%3A3.1.8-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,848 kB
  • ctags: 3,207
  • sloc: ansic: 37,905; sh: 2,869; makefile: 843; cpp: 606; perl: 101
file content (10 lines) | stat: -rw-r--r-- 149 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
#include "syshdrs.h"
#ifdef PRAGMA_HDRSTOP
#	pragma hdrstop
#endif

void
DStrInit(DStr *const dst)
{
	memset(dst, 0, sizeof(DStr));
}	/* DStrInit */