Converted u8_t to uint8_t and u16_t to uint16_t in the apps directory.

This commit is contained in:
Nicholas J Humfrey 2012-02-20 19:13:50 +00:00 committed by Mariano Alvira
parent 1cda3da17e
commit efab964451
61 changed files with 287 additions and 287 deletions

View file

@ -44,7 +44,7 @@
#define FLAG_ABORT 2
/*-----------------------------------------------------------------------------------*/
unsigned char
telnet_send(struct telnet_state *s, char *text, u16_t len)
telnet_send(struct telnet_state *s, char *text, uint16_t len)
{
if(s->text != NULL) {
return 1;
@ -104,7 +104,7 @@ senddata(struct telnet_state *s)
}
/*-----------------------------------------------------------------------------------*/
struct telnet_state *
telnet_connect(struct telnet_state *s, uip_ipaddr_t *addr, u16_t port)
telnet_connect(struct telnet_state *s, uip_ipaddr_t *addr, uint16_t port)
{
struct uip_conn *conn;