cccopy.c

来自「image processing including fourier,wavel」· C语言 代码 · 共 30 行

C
30
字号
/*----------------------------- MegaWave Module -----------------------------*//* mwcommand  name = {cccopy};  version = {"1.0"};  author = {"Jacques Froment"};  function = {"Copy of a color char image. Use it as format converter"};  usage = {   A->Input  "Input (could be a ccimage)",   ...<-Output "Output (copy of the input)"   };*//*--- MegaWave2 - Copyright (C)1994 Jacques Froment. All Rights Reserved. ---*/#include <stdio.h>/* Include always the MegaWave2 Library */#include "mw.h"Ccimage cccopy(Input,Output)Ccimage Input,*Output;{  if (*Output == NULL) mwerror(USAGE,1,"At least one Output requested\n");  *Output = Input;  }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?