n_proc.c 642 B

1234567891011121314151617181920212223
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. /* $Id $ */
  4. void proc_head (char *mes)
  5. {
  6. wfprintf(stderr,"\n\
  7. **************************************************************\n\
  8. \n\
  9. European digital cellular telecommunications system\n\
  10. 4750 ... 12200 bits/s speech codec for\n\
  11. Adaptive Multi-Rate speech traffic channels\n\
  12. \n\
  13. Bit-Exact C Simulation Code - %s\n\
  14. \n\
  15. R98: Version 7.6.0 \n\
  16. R99: Version 3.3.0 \n\
  17. REL-4: Version 4.1.0 December 12, 2001\n\
  18. REL-5: Version 5.1.0 March 26, 2003\n\
  19. **************************************************************\n\n",
  20. mes);
  21. }