Files
filex/common/src/fx_unicode_length_get.c
T

82 lines
5.0 KiB
C

/**************************************************************************/
/* */
/* Copyright (c) Microsoft Corporation. All rights reserved. */
/* */
/* This software is licensed under the Microsoft Software License */
/* Terms for Microsoft Azure RTOS. Full text of the license can be */
/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
/* and in the root directory of this software. */
/* */
/**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/** */
/** FileX Component */
/** */
/** Unicode */
/** */
/**************************************************************************/
/**************************************************************************/
#define FX_SOURCE_CODE
/* Include necessary system files. */
#include "fx_api.h"
#include "fx_unicode.h"
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _fx_unicode_length_get PORTABLE C */
/* 6.1 */
/* AUTHOR */
/* */
/* William E. Lamie, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function returns the length of the supplied unicode name. */
/* */
/* Note, this API is deprecated as _fx_unicode_length_get_extended */
/* should be used. The maximum buffer size of unicode_name is 256. */
/* */
/* INPUT */
/* */
/* unicode_name Pointer to unicode name */
/* */
/* OUTPUT */
/* */
/* length */
/* */
/* CALLS */
/* */
/* _fx_unicode_length_get_extended Actual unicode length get */
/* service */
/* */
/* CALLED BY */
/* */
/* Application Code */
/* */
/* RELEASE HISTORY */
/* */
/* DATE NAME DESCRIPTION */
/* */
/* 05-19-2020 William E. Lamie Initial Version 6.0 */
/* 09-30-2020 William E. Lamie Modified comment(s), */
/* resulting in version 6.1 */
/* */
/**************************************************************************/
ULONG _fx_unicode_length_get(UCHAR *unicode_name)
{
/* Call the extended version with 256 bytes maximum buffer length. */
return(_fx_unicode_length_get_extended(unicode_name, 256));
}