formatter_data.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | This source file is subject to version 3.01 of the PHP license, |
  6. | that is bundled with this package in the file LICENSE, and is |
  7. | available through the world-wide-web at the following url: |
  8. | http://www.php.net/license/3_01.txt |
  9. | If you did not receive a copy of the PHP license and are unable to |
  10. | obtain it through the world-wide-web, please send a note to |
  11. | license@php.net so we can mail you a copy immediately. |
  12. +----------------------------------------------------------------------+
  13. | Authors: Stanislav Malyshev <stas@zend.com> |
  14. +----------------------------------------------------------------------+
  15. */
  16. #ifdef HAVE_CONFIG_H
  17. #include "config.h"
  18. #endif
  19. #include "formatter_data.h"
  20. /* {{{ void formatter_data_init( formatter_data* nf_data )
  21. * Initialize internals of formatter_data.
  22. */
  23. void formatter_data_init( formatter_data* nf_data )
  24. {
  25. if( !nf_data )
  26. return;
  27. nf_data->unum = NULL;
  28. intl_error_reset( &nf_data->error );
  29. }
  30. /* }}} */
  31. /* {{{ void formatter_data_free( formatter_data* nf_data )
  32. * Clean up mem allocted by internals of formatter_data
  33. */
  34. void formatter_data_free( formatter_data* nf_data )
  35. {
  36. if( !nf_data )
  37. return;
  38. if( nf_data->unum )
  39. unum_close( nf_data->unum );
  40. nf_data->unum = NULL;
  41. intl_error_reset( &nf_data->error );
  42. }
  43. /* }}} */
  44. /* {{{ formatter_data* formatter_data_create()
  45. * Alloc mem for formatter_data and initialize it with default values.
  46. */
  47. formatter_data* formatter_data_create( void )
  48. {
  49. formatter_data* nf_data = ecalloc( 1, sizeof(formatter_data) );
  50. formatter_data_init( nf_data );
  51. return nf_data;
  52. }
  53. /* }}} */
  54. /*
  55. * Local variables:
  56. * tab-width: 4
  57. * c-basic-offset: 4
  58. * End:
  59. * vim600: noet sw=4 ts=4 fdm=marker
  60. * vim<600: noet sw=4 ts=4
  61. */