00001 /** 00002 * @file String.h 00003 * 00004 * @brief Defines for String manipulation library. 00005 * 00006 * 00007 * @ver 02.00.00.68_beta1 00008 * 00009 * ============================================================================ 00010 * 00011 * Copyright (c) 2008-2009, Texas Instruments Incorporated 00012 * 00013 * Redistribution and use in source and binary forms, with or without 00014 * modification, are permitted provided that the following conditions 00015 * are met: 00016 * 00017 * * Redistributions of source code must retain the above copyright 00018 * notice, this list of conditions and the following disclaimer. 00019 * 00020 * * Redistributions in binary form must reproduce the above copyright 00021 * notice, this list of conditions and the following disclaimer in the 00022 * documentation and/or other materials provided with the distribution. 00023 * 00024 * * Neither the name of Texas Instruments Incorporated nor the names of 00025 * its contributors may be used to endorse or promote products derived 00026 * from this software without specific prior written permission. 00027 * 00028 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00029 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 00030 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00031 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 00032 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00033 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00034 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 00035 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 00036 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 00037 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 00038 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00039 * Contact information for paper mail: 00040 * Texas Instruments 00041 * Post Office Box 655303 00042 * Dallas, Texas 75265 00043 * Contact information: 00044 * http://www-k.ext.ti.com/sc/technical-support/product-information-centers.htm? 00045 * DCMP=TIHomeTracking&HQS=Other+OT+home_d_contact 00046 * ============================================================================ 00047 * 00048 */ 00049 00050 00051 #ifndef UTILS_STRING_H_0XEFC8 00052 #define UTILS_STRING_H_0XEFC8 00053 00054 00055 #if defined (__cplusplus) 00056 extern "C" { 00057 #endif 00058 00059 00060 /* ============================================================================= 00061 * APIs 00062 * ============================================================================= 00063 */ 00064 /* Function to add a string at the end of another one */ 00065 String String_cat (String s1, String s2); 00066 00067 /* Function to compare two string */ 00068 Int String_cmp (String s1, String s2); 00069 00070 /* Function to compare two string only first n characters */ 00071 Int String_ncmp (String s1, String s2, UInt32 n); 00072 00073 /* Function to copy strings */ 00074 String String_cpy (String s1, String s2); 00075 00076 /* Function to copy first n bytes from s2 to s1 */ 00077 String String_ncpy (String s1, String s2, UInt32 n); 00078 00079 /* Function to returns the number of characters in s */ 00080 Int String_len (String s); 00081 00082 /* Function to get string representation of a hex number */ 00083 Int String_hexToStr (String s, UInt32 hex); 00084 00085 /* Function to calculate hash for a string */ 00086 UInt32 String_hash (String s); 00087 00088 00089 #if defined (__cplusplus) 00090 } 00091 #endif /* defined (__cplusplus) */ 00092 00093 #endif /* STRING_H_0X5B4D */
1.4.4