argv__get_quoted.c 360 B

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