Subversion Repositories pentevo

Rev

Blame | Last modification | View Log | Download | RSS feed | ?url?

  1. #ifndef _DYNSTR_NLS_H
  2. #define _DYNSTR_NLS_H
  3. /* dynstr.h */
  4. /*****************************************************************************/
  5. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  6. /*                                                                           */
  7. /* AS-Port                                                                   */
  8. /*                                                                           */
  9. /* Handling of strings with dynamic allocation - NLS extensions              */
  10. /*                                                                           */
  11. /*****************************************************************************/
  12.  
  13. #include <stddef.h>
  14.  
  15. struct as_dynstr;
  16.  
  17. extern size_t as_dynstr_append_upr(struct as_dynstr *p_dest, const char *p_src, size_t len);
  18.  
  19. extern size_t as_dynstr_append_c_str_upr(struct as_dynstr *p_dest, const char *p_src);
  20.  
  21. #endif /* _DYNSTR_NLS_H */
  22.