argv__get_quoted.c 413 B

12345678910111213141516171819
  1. /*
  2. * argv__get_quoted.c
  3. */
  4. #include "private.h"
  5. /*--------------------------------------------------------- */
  6. bool_t
  7. lub_argv__get_quoted(const lub_argv_t *this,
  8. unsigned index)
  9. {
  10. bool_t result = BOOL_FALSE;
  11. if(this->argc > index)
  12. {
  13. result = this->argv[index].quoted;
  14. }
  15. return result;
  16. }
  17. /*--------------------------------------------------------- */