labview实例+8.0版本

源代码在线查看: lvcstr.c

软件大小: 9.14M
上传用户: wenliang_d
关键词: labview 8.0 版本
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include "extcode.h"
				#include 
				
				_declspec(dllexport) void LVCStr(CStr input, CStr output);
				_declspec(dllexport) void LVCStr(CStr input, CStr output)
				{
				  int i, j;
				
				  /* Reverse "i" characters. Assume output already has memory. */
				  for(i = strlen(input) - 1, j = 0; i >= 0; i--, j++)
				  {
				    output[j] = input[i];
				  }
				}
							

相关资源