ARPCWrite.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void ARPCWrite (FILE * fp, void const * memory, size_t extent);
  11. *
  12. * mme.h
  13. *
  14. * Contributor(s):
  15. * Charles Maier <cmaier@qca.qualcomm.com>
  16. *
  17. *--------------------------------------------------------------------*/
  18. #ifndef ARPCWRITE_SOURCE
  19. #define ARPCWRITE_SOURCE
  20. #include <stdio.h>
  21. #include "../tools/memory.h"
  22. #include "../mme/mme.h"
  23. void ARPCWrite (FILE * fp, void const * memory, size_t extent)
  24. {
  25. uint16_t length = (uint16_t) (extent);
  26. if (isatty (fileno (fp)))
  27. {
  28. hexwrite (fileno (fp), & length, sizeof (length));
  29. hexwrite (fileno (fp), memory, length);
  30. #if defined (_WIN32)
  31. fputc ('\r', fp);
  32. #endif
  33. fputc ('\n', fp);
  34. }
  35. else
  36. {
  37. fwrite (& length, sizeof (length), 1, fp);
  38. fwrite (memory, length, 1, fp);
  39. }
  40. fflush (fp);
  41. return;
  42. }
  43. #endif