Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
http/server/strlib.h
- Committer:
- dflet
- Date:
- 2015-06-24
- Revision:
- 0:50cedd586816
File content as of revision 0:50cedd586816:
//*****************************************************************************
// Copyright (C) 2014 Texas Instruments Incorporated
//
// All rights reserved. Property of Texas Instruments Incorporated.
// Restricted rights to use, duplicate or disclose this code are
// granted through contract.
// The program may not be used without the written permission of
// Texas Instruments Incorporated or against the terms and conditions
// stipulated in the agreement under which this program has been supplied,
// and under no circumstances can it be used with non-TI connectivity device.
//
//*****************************************************************************
#ifndef __STRLIB__
#define __STRLIB__
#ifdef __cplusplus
extern "C" {
#endif
char *itoa(int n, char *s, int b);
char *strrev(char *str);
void WordToBytes(void *pBuff, void const*pvalue, unsigned int NumBytes);
int String_utoa(int uNum, char *pString);
int iptostring(unsigned char *ip, char *ipstring);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif