Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

40 lines
580 B

/************************************************************************
Copyright (c) 1993 Microsoft Corporation
Module Name :
ndrsup.c
Abstract :
This file contains string length functions for Mac.
Author :
Mario Goertzel (MarioGo) 11/17/94.
Revision History :
***********************************************************************/
#include <rpc.h>
#include <rpcndr.h>
size_t RPC_ENTRY
MIDL_wchar_strlen (
IN wchar_t s[]
)
{
size_t i = 0;
while (s[i] != (wchar_t)0)
{
++i;
}
return i;
}