snprintf.c 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * libcompat - system compatibility library
  3. *
  4. * Copyright © 1995 Ian Jackson <ian@chiark.greenend.org.uk>
  5. *
  6. * This is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2,
  9. * or (at your option) any later version.
  10. *
  11. * This is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public
  17. * License along with dpkg; if not, write to the Free Software
  18. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20. #include <config.h>
  21. #include <compat.h>
  22. #include <stddef.h>
  23. #include <stdarg.h>
  24. #include <stdio.h>
  25. #ifndef HAVE_SNPRINTF
  26. int
  27. snprintf(char *str, size_t n, char const *fmt, ...)
  28. {
  29. va_list ap;
  30. int i;
  31. va_start(ap, fmt);
  32. i = vsnprintf(str, n, fmt, ap);
  33. va_end(ap);
  34. return i;
  35. }
  36. #endif