Project

General

Profile

Statistics
| Revision:

root / proj / src / hltp.c @ 265

History | View | Annotate | Download (210 Bytes)

1
#include <lcom/lcf.h>
2

    
3
#include "hltp.h"
4

    
5
#include "nctp.h"
6

    
7
int hltp_send_string(int port, const char *p){
8
    uint8_t* ptr[] = {p};
9
    size_t    sz[] = {strlen(p)};
10
    return nctp_send(port, 1, ptr, sz);
11
}