<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'> <html xmlns='http://www.w3.org/1999/xhtml'> <head> <title>include/word.h</title> <meta name='robots' content='noindex,nofollow' /> <meta name='generator' content='GLOBAL-6.6.5' /> <meta http-equiv='Content-Style-Type' content='text/css' /> <link rel='stylesheet' type='text/css' href='../style.css' /> </head> <body> <a id='TOP' name='TOP'></a><h2 class='header'><a href='../mains.html'>root</a>/<a href='../files/2930.html'>include</a>/word.h</h2> <em class='comment'>/* [<][>][^][v][top]<a href='#BOTTOM'>[bottom]</a><a href='../mains.html'>[index]</a><a href='../help.html'>[help]</a> */</em> <hr /> <h2 class='header'><a href='../J/1320.html' title='Multiple included from 11 places.'>INCLUDED FROM</a></h2> <hr /> <pre> <a id='L1' name='L1'></a> 1 <em class='sharp'>#ifndef</em> <a href='../S/2425.html#L2' title='Defined at 2 in include/word.h.'>YACASL2_WORD_H_INCLUDED</a> <a id='L2' name='L2'></a> 2 <em class='sharp'>#define</em> <a href='../S/2425.html#L1' title='Referred from 1 in include/word.h.'>YACASL2_WORD_H_INCLUDED</a> <a id='L3' name='L3'></a> 3 <a id='L4' name='L4'></a> 4 <em class='sharp'>#include</em> <stdbool.h> <a id='L5' name='L5'></a> 5 <a id='L6' name='L6'></a> 6 <em class='comment'>/**</em> <a id='L7' name='L7'></a> 7 <em class='comment'> * @brief 16ビットの数値を表すデータ型</em> <a id='L8' name='L8'></a> 8 <em class='comment'> */</em> <a id='L9' name='L9'></a> 9 <strong class='reserved'>typedef</strong> <strong class='reserved'>unsigned</strong> <strong class='reserved'>short</strong> <a href='../R/62.html' title='Multiple referred from 203 places.'>WORD</a>; <a id='L10' name='L10'></a> 10 <a id='L11' name='L11'></a> 11 <em class='comment'>/**</em> <a id='L12' name='L12'></a> 12 <em class='comment'> * @brief wordデータ型についてのエラーをエラーリストに追加する</em> <a id='L13' name='L13'></a> 13 <em class='comment'> *</em> <a id='L14' name='L14'></a> 14 <em class='comment'> * @return なし</em> <a id='L15' name='L15'></a> 15 <em class='comment'> */</em> <a id='L16' name='L16'></a> 16 <strong class='reserved'>void</strong> <a href='../S/2828.html#L77' title='Defined at 77 in src/word.c.'>addcerrlist_word</a>(); <a id='L17' name='L17'></a> 17 <a id='L18' name='L18'></a> 18 <em class='comment'>/**</em> <a id='L19' name='L19'></a> 19 <em class='comment'> * @brief 10進数または16進数の文字列をWORD値に変換する</em> <a id='L20' name='L20'></a> 20 <em class='comment'> *</em> <a id='L21' name='L21'></a> 21 <em class='comment'> * @return WORD値</em> <a id='L22' name='L22'></a> 22 <em class='comment'> *</em> <a id='L23' name='L23'></a> 23 <em class='comment'> * @param *str 10進数または16進数の文字列</em> <a id='L24' name='L24'></a> 24 <em class='comment'> */</em> <a id='L25' name='L25'></a> 25 <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../S/2828.html#L82' title='Defined at 82 in src/word.c.'>nh2word</a>(<strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/203.html' title='Multiple used in 103 places.'>str</a>); <a id='L26' name='L26'></a> 26 <a id='L27' name='L27'></a> 27 <em class='comment'>/**</em> <a id='L28' name='L28'></a> 28 <em class='comment'> * @brief WORD値を10進数値を表す文字列に変換する</em> <a id='L29' name='L29'></a> 29 <em class='comment'> *</em> <a id='L30' name='L30'></a> 30 <em class='comment'> * @return 10進数値を表す文字列</em> <a id='L31' name='L31'></a> 31 <em class='comment'> *</em> <a id='L32' name='L32'></a> 32 <em class='comment'> * @param *word WORD値</em> <a id='L33' name='L33'></a> 33 <em class='comment'> */</em> <a id='L34' name='L34'></a> 34 <strong class='reserved'>char</strong> *<a href='../S/2828.html#L102' title='Defined at 102 in src/word.c.'>word2n</a>(<a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/237.html' title='Multiple used in 54 places.'>word</a>); <a id='L35' name='L35'></a> 35 <a id='L36' name='L36'></a> 36 <em class='comment'>/**</em> <a id='L37' name='L37'></a> 37 <em class='comment'> * @brief WORD値を2進数の文字列に変換する</em> <a id='L38' name='L38'></a> 38 <em class='comment'> *</em> <a id='L39' name='L39'></a> 39 <em class='comment'> * @return 2進数値を表す文字列</em> <a id='L40' name='L40'></a> 40 <em class='comment'> *</em> <a id='L41' name='L41'></a> 41 <em class='comment'> * @param word WORD値</em> <a id='L42' name='L42'></a> 42 <em class='comment'> */</em> <a id='L43' name='L43'></a> 43 <strong class='reserved'>char</strong> *<a href='../S/2828.html#L120' title='Defined at 120 in src/word.c.'>word2bit</a>(<strong class='reserved'>const</strong> <a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/237.html' title='Multiple used in 54 places.'>word</a>); <a id='L44' name='L44'></a> 44 <a id='L45' name='L45'></a> 45 <em class='comment'>/**</em> <a id='L46' name='L46'></a> 46 <em class='comment'> * @brief WORD値を解析して表示する</em> <a id='L47' name='L47'></a> 47 <em class='comment'> *</em> <a id='L48' name='L48'></a> 48 <em class='comment'> * @return なし</em> <a id='L49' name='L49'></a> 49 <em class='comment'> *</em> <a id='L50' name='L50'></a> 50 <em class='comment'> * @param word WORD値</em> <a id='L51' name='L51'></a> 51 <em class='comment'> * @param logicalmode 論理演算の場合はtrue、算術演算の場合はfalse</em> <a id='L52' name='L52'></a> 52 <em class='comment'> */</em> <a id='L53' name='L53'></a> 53 <strong class='reserved'>void</strong> <a href='../S/2828.html#L137' title='Defined at 137 in src/word.c.'>print_dumpword</a>(<a href='../S/2425.html#L9' title='Defined at 9 in include/word.h.'>WORD</a> <a href='../Y/237.html' title='Multiple used in 54 places.'>word</a>, <a href='../Y/25.html' title='Multiple used in 55 places.'>bool</a> <a href='../Y/137.html' title='Multiple used in 6 places.'>logicalmode</a>); <a id='L54' name='L54'></a> 54 <a id='L55' name='L55'></a> 55 <em class='sharp'>#endif</em> </pre> <hr /> <a id='BOTTOM' name='BOTTOM'></a> <em class='comment'>/* [<][>][^][v]<a href='#TOP'>[top]</a>[bottom]<a href='../mains.html'>[index]</a><a href='../help.html'>[help]</a> */</em> </body> </html>