/* ------< strpos.h >-------< 2005.07.18 >-------< 2015.07.15 >----------------- */ /* kamifuji (R) Find the string position of source string. Version=1.01 */ /* Copyright (C) kamifuji@proof.ocn.ne.jp 1996-2015 All rights reserved.*/ /* (C) kamifuji@kamifuji.dyndns.org 1996-2015 All rights reserved.*/ // C++ から呼び出すときには、::strpos( ) /*------------------------------------------------------------------------*/ /* */ /* 関数名 | strpos */ /* 引数 */ /* 入力 | char *buff : 検索元の テキスト。 */ /* | char *sjis_buff : 検索テキスト。 */ /* */ /* 戻り値 | 変換された文字数を返す。 */ /* */ /* 処理内容 | 検索元テキスト中の検索文字列の位置を取得する。 strstr と良く似た関数です。 */ /* */ /* 制御タイミング | ユーザー関数から呼び出し */ /* */ /* 注意事項 | -- */ /* */ /*------------------------------------------------------------------------*/ int strpos( char *buff,char *cstr);