⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 server.c

📁 tuxede下面的编程
💻 C
字号:
/*	Copyright (c) 1998 BEA Systems, Inc.	All rights reserved	THIS IS UNPUBLISHED PROPRIETARY	SOURCE CODE OF BEA Systems, Inc.	The copyright notice above does not	evidence any actual or intended	publication of such source code.*//*	Copyright 1996 BEA Systems, Inc.	*//*	THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF     	*//*	BEA Systems, Inc.                     	*//*	The copyright notice above does not evidence any   	*//*	actual or intended publication of such source code.	*//*      Copyright (c) 1992 USL        All rights reserved        THIS IS UNPUBLISHED PROPRIETARY        SOURCE CODE OF USL        The copyright notice above does not        evidence any actual or intended        publication of such source code.*//* #ident	"@(#) apps/qsample/server.c	$Revision: 1.1 $" */#include <stdio.h>#include <ctype.h>#include "atmi.h"STRING(msg)TPSVCINFO *msg;{	char *str;	int i;	/* set pointer to data portion of message */	str = (char *)msg->data;	/* convert string to upper case */	for (i = 0; i < msg->len; i++) {		str[i] = toupper(str[i]);	}	tpreturn(TPSUCCESS, 0, msg->data, 0L, 0);}

⌨️ 快捷键说明

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