copy.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. ********************************************************************************
  3. *
  4. * GSM AMR-NB speech codec R98 Version 7.6.0 December 12, 2001
  5. * R99 Version 3.3.0
  6. * REL-4 Version 4.1.0
  7. *
  8. ********************************************************************************
  9. * File : copy.h
  10. * Purpose : Copy vector x[] to y[]
  11. *
  12. ********************************************************************************
  13. */
  14. #ifndef copy_h
  15. #define copy_h "$Id $"
  16. /*
  17. ********************************************************************************
  18. * INCLUDE FILES
  19. ********************************************************************************
  20. */
  21. #include "typedef.h"
  22. /*
  23. ********************************************************************************
  24. * DEFINITION OF DATA TYPES
  25. ********************************************************************************
  26. */
  27. /*
  28. ********************************************************************************
  29. * DECLARATION OF PROTOTYPES
  30. ********************************************************************************
  31. */
  32. /*
  33. **************************************************************************
  34. *
  35. * Function : Copy
  36. * Purpose : Copy vector x[] to y[], vector length L
  37. * Returns : void
  38. *
  39. **************************************************************************
  40. */
  41. void Copy (
  42. const Word16 x[], /* i : input vector (L) */
  43. Word16 y[], /* o : output vector (L) */
  44. Word16 L /* i : vector length */
  45. );
  46. #endif