jstradv.c

来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 73 行

C
73
字号
/****************************************************************************
*
*                            Open Watcom Project
*
*    Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
*  ========================================================================
*
*    This file contains Original Code and/or Modifications of Original
*    Code as defined in and that are subject to the Sybase Open Watcom
*    Public License version 1.0 (the 'License'). You may not use this file
*    except in compliance with the License. BY USING THIS FILE YOU AGREE TO
*    ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
*    provided with the Original Code and Modifications, and is also
*    available at www.sybase.com/developer/opensource.
*
*    The Original Code and all software distributed under the License are
*    distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
*    EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
*    ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
*    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
*    NON-INFRINGEMENT. Please see the License for the specific language
*    governing rights and limitations under the License.
*
*  ========================================================================
*
* Description:  WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
*               DESCRIBE IT HERE!
*
****************************************************************************/


#include "variety.h"
#include <jstring.h>

/**
*
*  Name:        jstradv         暥帤悢暘愭偺億僀儞僞傪摼傞
*
*  Synopsis:    news = jstradv( s, nm );
*
*               JSTRING news;   怴暥帤楍
*               JSTRING s;      暥帤楍
*               int nm;         暥帤悢
*
*  Description: 暥帤楍倱偺愭摢偐傜値倣偱巜掕偟偨暥帤悢偩偗愭偺暥帤傪巜偡
*               億僀儞僞傪曉偡丅娍帤僐乕僪偼俀僶僀僩偱侾暥帤偲悢偊傞丅
*
*  Returns:     暥帤楍倱偑暥帤悢値倣傛傝傕抁偄応崌偼丄暥帤楍偺嵟屻偵偁傞
*               僰儖暥帤傪巜偡億僀儞僞傪曉偡丅
*
*
*  Name:        jstradv         get forward string position in specified string.*
*  Synopsis:    news = jstradv( s, nm );
*
*               JSTRING news;   forward position
*               JSTRING s;      current position of string
*               int     nm;     number of letters for forwarding
*
*  Description: This function returns the forward position where is advanced nm
*               times per letter from current position for s string. A kanji
*               letter consists of 2 byte.
*
*  Returns:     If the length of s string is shorter than nm number then this
*               function will return the end of position for s string.
**/


_WCRTLINK JSTRING jstradv( const JCHAR *s, size_t nm )
{
    return( (JSTRING) (s + mtob( s, nm )) );
}

⌨️ 快捷键说明

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