mirror of
https://github.com/antoinevignau/source.git
synced 2025-01-22 14:30:24 +00:00
1 line
715 B
C
Executable File
1 line
715 B
C
Executable File
/***********************************************************************\
|
|
|
|
Product Number: PROXLIB-01-2.0
|
|
|
|
Version: rev2.0
|
|
|
|
Product Name: Proximity Subroutine Library
|
|
|
|
Filename: proxzero.c
|
|
|
|
|
|
This document contains private and confidential information and
|
|
its disclosure does not constitute publication. Some of the
|
|
information herein also may appear in United States and or
|
|
Foreign Patents Pending. All rights are reserved by Proximity
|
|
Technology Inc., except those specifically granted by license.
|
|
|
|
\***********************************************************************/
|
|
|
|
#include "proxlib.h"
|
|
|
|
VOID
|
|
proxzero(str, len)
|
|
register UCHAR *str;
|
|
register int len;
|
|
{
|
|
while (--len >= 0) {
|
|
*str++ = 0;
|
|
}
|
|
}
|
|
|