You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.6 KiB

25 years ago
24 years ago
24 years ago
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 4 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2003 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.0 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_0.txt. |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Jaakko Hyvtti <jaakko.hyvatti@iki.fi> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #include <stdio.h>
  20. #include <stdarg.h>
  21. #ifdef NETWARE
  22. #include "config.nw.h"
  23. #else
  24. #include "php_config.h"
  25. #endif
  26. #if PHP_BROKEN_SPRINTF
  27. int
  28. php_sprintf (char*s, const char* format, ...)
  29. {
  30. va_list args;
  31. char *ret;
  32. va_start (args, format);
  33. s[0] = '\0';
  34. ret = vsprintf (s, format, args);
  35. va_end (args);
  36. if (!ret)
  37. return -1;
  38. return strlen (s);
  39. }
  40. #endif /* PHP_BROKEN_SPRINTF */
  41. /*
  42. * Local variables:
  43. * tab-width: 4
  44. * c-basic-offset: 4
  45. * End:
  46. * vim600: sw=4 ts=4 fdm=marker
  47. * vim<600: sw=4 ts=4
  48. */