simplestring.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. This file is part of libXMLRPC - a C library for xml-encoded function calls.
  3. Author: Dan Libby (dan@libby.com)
  4. Epinions.com may be contacted at feedback@epinions-inc.com
  5. */
  6. /*
  7. Copyright 2000 Epinions, Inc.
  8. Subject to the following 3 conditions, Epinions, Inc. permits you, free
  9. of charge, to (a) use, copy, distribute, modify, perform and display this
  10. software and associated documentation files (the "Software"), and (b)
  11. permit others to whom the Software is furnished to do so as well.
  12. 1) The above copyright notice and this permission notice shall be included
  13. without modification in all copies or substantial portions of the
  14. Software.
  15. 2) THE SOFTWARE IS PROVIDED "AS IS", WITHOUT ANY WARRANTY OR CONDITION OF
  16. ANY KIND, EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION ANY
  17. IMPLIED WARRANTIES OF ACCURACY, MERCHANTABILITY, FITNESS FOR A PARTICULAR
  18. PURPOSE OR NONINFRINGEMENT.
  19. 3) IN NO EVENT SHALL EPINIONS, INC. BE LIABLE FOR ANY DIRECT, INDIRECT,
  20. SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OR LOST PROFITS ARISING OUT
  21. OF OR IN CONNECTION WITH THE SOFTWARE (HOWEVER ARISING, INCLUDING
  22. NEGLIGENCE), EVEN IF EPINIONS, INC. IS AWARE OF THE POSSIBILITY OF SUCH
  23. DAMAGES.
  24. */
  25. #ifndef __SIMPLESTRING_H__
  26. #define __SIMPLESTRING_H__
  27. /*-********************************
  28. * begin simplestring header stuff *
  29. **********************************/
  30. #ifdef __cplusplus
  31. extern "C" {
  32. #endif
  33. /****s* struct/simplestring
  34. * NAME
  35. * simplestring
  36. * NOTES
  37. * represents a string efficiently for fast appending, etc.
  38. * SOURCE
  39. */
  40. typedef struct _simplestring {
  41. char* str; /* string buf */
  42. int len; /* length of string/buf */
  43. int size; /* size of allocated buffer */
  44. } simplestring;
  45. /******/
  46. #ifndef NULL
  47. #define NULL 0
  48. #endif
  49. void simplestring_init(simplestring* string);
  50. void simplestring_clear(simplestring* string);
  51. void simplestring_free(simplestring* string);
  52. void simplestring_add(simplestring* string, const char* add);
  53. void simplestring_addn(simplestring* string, const char* add, size_t add_len);
  54. #ifdef __cplusplus
  55. }
  56. #endif
  57. /*-******************************
  58. * end simplestring header stuff *
  59. ********************************/
  60. #endif /* __SIMPLESTRING_H__ */