/scilab-master-1333395999/modules/string/src/c/partfunction.h

# · C Header · 28 lines · 4 code · 3 blank · 21 comment · 0 complexity · 421d9106e41722d6c0f0b2bccc713a76 MD5 · raw file

  1. /*
  2. * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
  3. * Copyright (C) 2008 - INRIA - Allan CORNET
  4. *
  5. * This file must be used under the terms of the CeCILL.
  6. * This source file is licensed as described in the file COPYING, which
  7. * you should have received as part of this distribution. The terms
  8. * are also available at
  9. * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
  10. *
  11. */
  12. #ifndef __PARTFUNCTION_H__
  13. #define __PARTFUNCTION_H__
  14. /**
  15. * part : extraction of strings
  16. * @param[in] stringInput : matrix of strings
  17. * @param[in] m : col of stringInput
  18. * @param[in] n : row of stringInput
  19. * @param[in] vectInput : row vector
  20. * @param[in] row : row of vectInput
  21. * @return matrix of strings (same size as stringInput)
  22. */
  23. char **partfunction(char** stringInput,int m,int n,int *vectInput,int row);
  24. #endif /* __PARTFUNCTION_H__ */
  25. /*---------------------------------------------------------------------------*/