vis.h 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Copyright (C) 2013 by egnite GmbH
  3. * Copyright (c) 1990 The Regents of the University of California
  4. *
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. *
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. * 3. Neither the name of the copyright holders nor the names of
  17. * contributors may be used to endorse or promote products derived
  18. * from this software without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  23. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  24. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  25. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  26. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  27. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  28. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  29. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  30. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. * SUCH DAMAGE.
  32. *
  33. * For additional information see http://www.ethernut.de/
  34. */
  35. #ifndef _VIS_H_
  36. #define _VIS_H_
  37. /*
  38. * To select alternate encoding format
  39. */
  40. #define VIS_OCTAL 0x01 /*!< \brief Use octal \ddd format */
  41. #define VIS_CSTYLE 0x02 /*!< \brief Use \[nrft0..] where appropriate */
  42. #define VIS_HTTPSTYLE 0x80 /*!< \brief HTTP-style escape % HEX HEX */
  43. /*
  44. * To alter set of characters encoded (default is to encode all
  45. * non-graphic except space, tab, and newline).
  46. */
  47. #define VIS_SP 0x04 /*!< \brief Also encode space */
  48. #define VIS_TAB 0x08 /*!< \brief Also encode tab */
  49. #define VIS_NL 0x10 /*!< \brief Also encode newline */
  50. #define VIS_WHITE (VIS_SP | VIS_TAB | VIS_NL)
  51. #define VIS_SAFE 0x20 /*!< \brief Only encode "unsafe" characters */
  52. /*
  53. * Other
  54. */
  55. #define VIS_NOSLASH 0x40 /*!< \brief Inhibit printing '\' */
  56. #define VIS_GLOB 0x100 /*!< \brief Encode glob(3) magics and '#' */
  57. /*
  58. * unvis return codes
  59. */
  60. #define UNVIS_VALID 1 /*!< \brief Character valid */
  61. #define UNVIS_VALIDPUSH 2 /*!< \brief Character valid, push back passed char */
  62. #define UNVIS_NOCHAR 3 /*!< \brief Valid sequence, no character produced */
  63. #define UNVIS_SYNBAD -1 /*!< \brief Unrecognized escape sequence */
  64. #define UNVIS_ERROR -2 /*!< \brief Decoder in unknown state (unrecoverable) */
  65. /*
  66. * unvis flags
  67. */
  68. #define UNVIS_END 1 /*!< \brief No more characters */
  69. char *vis(char *, int, int, int);
  70. int strvis(char *, const char *, int);
  71. int strnvis(char *, const char *, size_t, int);
  72. int strvisx(char *, const char *, size_t, int);
  73. int strunvis(char *, const char *);
  74. int unvis(char *, int, int *, int);
  75. int strnunvis(char *, const char *, size_t);
  76. int strunvisx(char *, const char *, int);
  77. #endif