rderr.c
上传用户:tsjrly
上传日期:2021-02-19
资源大小:107k
文件大小:1k
源码类别:

语音压缩

开发平台:

C/C++

  1. /**************************************************************************
  2. *
  3. * ROUTINE
  4. *               read_error
  5. *
  6. * FUNCTION
  7. *                
  8. *               prints sungraph read error message
  9. *
  10. * SYNOPSIS
  11. *               subroutine read_error(status,string)
  12. *
  13. *   formal 
  14. *
  15. *                       data    I/O
  16. *       name            type    type    function
  17. *       -------------------------------------------------------------------
  18. *       status i i sungraph error index
  19. * string char i name of file in error
  20. *
  21. ***************************************************************************
  22. *
  23. * CALLED BY
  24. *
  25. * celp (sungraph_open.h)
  26. *
  27. * CALLS
  28. *
  29. * print_disk_read_error
  30. *
  31. ***************************************************************************
  32. *
  33. * DESCRIPTION
  34. *
  35. *
  36. *
  37. **************************************************************************/
  38. #include <stdio.h>
  39. read_error(status,string)
  40. int status;
  41. char string[];
  42. {
  43.   fprintf(stderr,"read_error: disk read error at %sn", string);
  44.   print_disk_read_error(status);
  45.   exit(1);
  46. }