iotivity 0.9.0
[platform/upstream/iotivity.git] / resource / csdk / connectivity / lib / 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 {
16     size_t length; /* length of string */
17     unsigned char *s; /* string data */
18 } str;
19
20 #define COAP_SET_STR(st,l,v) { (st)->length = (l), (st)->s = (v); }
21
22 /**
23  * Returns a new string object with at least size bytes storage
24  * allocated.  The string must be released using coap_delete_string();
25  */
26 str *coap_new_string(size_t size);
27
28 /** Deletes the given string and releases any memory allocated. */
29 void coap_delete_string(str *);
30
31 #endif /* _COAP_STR_H_ */