7c10ce8a6e2824176479f8a30da387058e9aa07d
[platform/upstream/iotivity.git] / resource / csdk / libcoap-4.1.1 / str.h
1 /* str.h -- strings to be used in the CoAP library
2  *
3  * Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
4  *
5  * This file is part of the CoAP library libcoap. Please see
6  * README for terms of use. 
7  */
8
9 #ifndef _COAP_STR_H_
10 #define _COAP_STR_H_
11
12 #include <string.h>
13
14 typedef struct {
15   size_t length;                /* length of string */
16   unsigned char *s;             /* string data */
17 } str;
18
19 #define COAP_SET_STR(st,l,v) { (st)->length = (l), (st)->s = (v); }
20
21 /**
22  * Returns a new string object with at least size bytes storage
23  * allocated.  The string must be released using coap_delete_string();
24  */
25 str *coap_new_string(size_t size);
26
27 /** Deletes the given string and releases any memory allocated. */
28 void coap_delete_string(str *);
29
30 #endif /* _COAP_STR_H_ */