confstr.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* Copyright (C) 1991, 1996, 1997, 2000 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Library General Public License as
  5. published by the Free Software Foundation; either version 2 of the
  6. License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with the GNU C Library; see the file COPYING.LIB. If not,
  13. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. Boston, MA 02111-1307, USA. */
  15. #include <stddef.h>
  16. #include <errno.h>
  17. #include <unistd.h>
  18. #include <string.h>
  19. libc_hidden_proto(memcpy)
  20. #define CS_PATH "/bin:/usr/bin"
  21. /* If BUF is not NULL and LEN > 0, fill in at most LEN - 1 bytes
  22. of BUF with the value corresponding to NAME and zero-terminate BUF.
  23. Return the number of bytes required to hold NAME's entire value. */
  24. size_t confstr ( int name, char *buf, size_t len)
  25. {
  26. const char *string;
  27. size_t string_len;
  28. switch (name)
  29. {
  30. case _CS_PATH:
  31. {
  32. static const char cs_path[] = CS_PATH;
  33. string = cs_path;
  34. string_len = sizeof (cs_path);
  35. }
  36. break;
  37. default:
  38. __set_errno (EINVAL);
  39. return 0;
  40. }
  41. if (len > 0 && buf != NULL)
  42. {
  43. if (string_len <= len)
  44. memcpy (buf, string, string_len);
  45. else
  46. {
  47. memcpy (buf, string, len - 1);
  48. buf[len - 1] = '\0';
  49. }
  50. }
  51. return string_len;
  52. }