1. 程式實作: 檔案處理
  file-text.txt  a. FILE *fopen(const char *filename, const char *mode);
  b. int fseek(FILE *stream, long offset, int whence);
  c. size_t fread(void *ptr, size_t size, size_t n, FILE *stream);
  d. size_t fwrite(const void *ptr, size_t size, size_t n, FILE *stream);
  f. int fclose(FILE *stream);
2. 範例程式講解 (1)
本範例程式可以讀取與顯示 GIF 影像檔案中的調色盤。  
DMC-SP-GIF.c顯示的方式為使用一個影像元件, 然後用 FillRect 這個 method 畫出來。