Changeset 113 for NEWT0/trunk
- Timestamp:
- 08/19/07 17:46:19 (5 years ago)
- Location:
- NEWT0/trunk/src
- Files:
-
- 17 edited
-
main.c (modified) (6 diffs)
-
newt.xcodeproj/project.pbxproj (modified) (1 diff)
-
newt_core/NewtBC.c (modified) (10 diffs)
-
newt_core/NewtEnv.c (modified) (7 diffs)
-
newt_core/NewtFile.c (modified) (5 diffs)
-
newt_core/NewtFns.c (modified) (13 diffs)
-
newt_core/NewtGC.c (modified) (5 diffs)
-
newt_core/NewtIO.c (modified) (3 diffs)
-
newt_core/NewtMem.c (modified) (2 diffs)
-
newt_core/NewtNSOF.c (modified) (4 diffs)
-
newt_core/NewtObj.c (modified) (18 diffs)
-
newt_core/NewtParser.c (modified) (6 diffs)
-
newt_core/NewtPrint.c (modified) (3 diffs)
-
newt_core/NewtStr.c (modified) (3 diffs)
-
newt_core/NewtVM.c (modified) (16 diffs)
-
parser/newt.l (modified) (2 diffs)
-
utils/endian_utils.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
NEWT0/trunk/src/main.c
r98 r113 88 88 89 89 90 #pragma mark - 90 #if 0 91 #pragma mark - 92 #endif 91 93 /*------------------------------------------------------------------------*/ 92 94 /** 結果を表示 … … 107 109 108 110 109 #pragma mark - 111 #if 0 112 #pragma mark - 113 #endif 110 114 /*------------------------------------------------------------------------*/ 111 115 /** コマンドライン引数で指定された関数の情報を表示 … … 203 207 204 208 205 #pragma mark - 209 #if 0 210 #pragma mark - 211 #endif 206 212 /*------------------------------------------------------------------------*/ 207 213 /** 作業ディレクトリを変更 */ … … 215 221 216 222 217 #pragma mark - 223 #if 0 224 #pragma mark - 225 #endif 218 226 /*------------------------------------------------------------------------*/ 219 227 /** コピーライトを表示 */ … … 247 255 248 256 249 #pragma mark - 257 #if 0 258 #pragma mark - 259 #endif 250 260 /*------------------------------------------------------------------------*/ 251 261 /** オプションエラーを表示 … … 394 404 395 405 396 #pragma mark - 406 #if 0 407 #pragma mark - 408 #endif 397 409 /*------------------------------------------------------------------------*/ 398 410 /** main 関数(CUI コマンド) -
NEWT0/trunk/src/newt.xcodeproj/project.pbxproj
r96 r113 47 47 48 48 /* Begin PBXFileReference section */ 49 8DD76FB20486AB0100D96B5E /* newt */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = newt; sourceTree = BUILT_PRODUCTS_DIR; };49 8DD76FB20486AB0100D96B5E /* newt */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = "compiled.mach-o.executable"; path = newt; sourceTree = BUILT_PRODUCTS_DIR; }; 50 50 F503AC6A0851DFD9009BA497 /* endian_utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = endian_utils.c; sourceTree = "<group>"; }; 51 51 F503AC6B0851DFD9009BA497 /* endian_utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = endian_utils.h; sourceTree = "<group>"; }; -
NEWT0/trunk/src/newt_core/NewtBC.c
r93 r113 73 73 74 74 75 #ifndef _MSC_VER 76 75 #if 0 77 76 #pragma mark - 78 79 #pragma mark ローカル変数 77 #pragma mark *** ローカル変数 80 78 #endif 81 82 79 83 80 … … 107 104 108 105 106 #if 0 109 107 #pragma mark - 108 #endif 109 110 110 /* 関数プロトタイプ */ 111 111 static int16_t NBCAddLiteralEnv(nbc_env_t * env, newtRefArg r); … … 180 180 181 181 182 #if 0 182 183 #pragma mark - 184 #endif 183 185 /*------------------------------------------------------------------------*/ 184 186 /** リテラルリストにオブジェクトを追加する … … 293 295 294 296 297 #if 0 295 298 #pragma mark - 299 #endif 296 300 /*------------------------------------------------------------------------*/ 297 301 /** オブジェクトをプッシュするバイトコードを生成 … … 550 554 551 555 556 #if 0 552 557 #pragma mark - 558 #endif 553 559 /*------------------------------------------------------------------------*/ 554 560 /** ローカル変数を定義するバイトコードを生成 … … 583 589 584 590 591 #if 0 585 592 #pragma mark - 593 #endif 586 594 /*------------------------------------------------------------------------*/ 587 595 /** バイトコードをバックパッチする … … 650 658 651 659 660 #if 0 652 661 #pragma mark - 662 #endif 653 663 /*------------------------------------------------------------------------*/ 654 664 /** 例外処理命令の位置をスタックする … … 755 765 756 766 767 #if 0 757 768 #pragma mark - 769 #endif 758 770 /*------------------------------------------------------------------------*/ 759 771 /** 関数オブジェクトを作成する … … 946 958 947 959 960 #if 0 948 961 #pragma mark - 962 #endif 949 963 /*------------------------------------------------------------------------*/ 950 964 /** 文のバイトコードを生成する … … 2667 2681 2668 2682 2669 #ifndef _MSC_VER 2670 2683 #if 0 2671 2684 #pragma mark - 2672 2673 2685 #endif 2674 2675 2676 2686 /*------------------------------------------------------------------------*/ 2677 2687 /** エラーメッセージの表示 -
NEWT0/trunk/src/newt_core/NewtEnv.c
r93 r113 54 54 55 55 56 56 #if 0 57 57 #pragma mark - 58 #endif 58 59 /*------------------------------------------------------------------------*/ 59 60 /** 文字列の文字を指定された文字で置き換える … … 79 80 80 81 82 #if 0 81 83 #pragma mark - 84 #endif 82 85 /*------------------------------------------------------------------------*/ 83 86 /** 環境変数からデフォルトエンコーディングを取得 … … 104 107 105 108 109 #if 0 106 110 #pragma mark - 111 #endif 107 112 /*------------------------------------------------------------------------*/ 108 113 /** よく使うシンボルの初期化 … … 448 453 449 454 455 #if 0 450 456 #pragma mark - 457 #endif 451 458 /*------------------------------------------------------------------------*/ 452 459 /** シンボルテーブルからシンボルを検索する … … 463 470 464 471 472 #if 0 465 473 #pragma mark - 474 #endif 466 475 /*------------------------------------------------------------------------*/ 467 476 /** グローバル関数の有無を調べる … … 494 503 495 504 505 #if 0 496 506 #pragma mark - 507 #endif 497 508 /*------------------------------------------------------------------------*/ 498 509 /** グローバル関数の有無を調べる … … 833 844 834 845 846 #if 0 835 847 #pragma mark - 848 #endif 836 849 /*------------------------------------------------------------------------*/ 837 850 /** ルートオブジェクトの取得 -
NEWT0/trunk/src/newt_core/NewtFile.c
r78 r113 114 114 115 115 116 #if 0 116 117 #pragma mark - 118 #endif 117 119 /*------------------------------------------------------------------------*/ 118 120 /** ファイルセパレータを返す … … 351 353 352 354 355 #if 0 353 356 #pragma mark - 357 #endif 354 358 /*------------------------------------------------------------------------*/ 355 359 /** パスからファイル名を取出す … … 382 386 383 387 388 #if 0 384 389 #pragma mark - 390 #endif 385 391 /*------------------------------------------------------------------------*/ 386 392 /** ソースファイルのコンパイル … … 623 629 624 630 631 #if 0 625 632 #pragma mark - 633 #endif 626 634 /*------------------------------------------------------------------------*/ 627 635 /** ファイルの存在確認 … … 645 653 646 654 655 #if 0 647 656 #pragma mark - 657 #endif 648 658 /*------------------------------------------------------------------------*/ 649 659 /** パスからディレクトリ名を取出す -
NEWT0/trunk/src/newt_core/NewtFns.c
r104 r113 30 30 31 31 32 #if 0 32 33 #pragma mark - 34 #endif 33 35 /*------------------------------------------------------------------------*/ 34 36 /** プロト継承でシンボルを検索(フレームを見つける) … … 176 178 177 179 180 #if 0 178 181 #pragma mark - 182 #endif 179 183 /*------------------------------------------------------------------------*/ 180 184 /** シンボルテーブルからシンボルを検索 … … 651 655 652 656 657 #if 0 653 658 #pragma mark - 659 #endif 654 660 /*------------------------------------------------------------------------*/ 655 661 /** オブジェクトタイプを対応するクラスシンボルに変換する … … 986 992 987 993 994 #if 0 988 995 #pragma mark - 996 #endif 989 997 /*------------------------------------------------------------------------*/ 990 998 /** r が配列かチェックする … … 1195 1203 1196 1204 1205 #if 0 1197 1206 #pragma mark - 1207 #endif 1198 1208 /*------------------------------------------------------------------------*/ 1199 1209 /** 配列オブジェクトに値を追加する … … 1374 1384 1375 1385 1386 #if 0 1376 1387 #pragma mark - 1388 #endif 1377 1389 /*------------------------------------------------------------------------*/ 1378 1390 /** 整数のビットAND … … 1434 1446 1435 1447 1448 #if 0 1436 1449 #pragma mark - 1450 #endif 1437 1451 /*------------------------------------------------------------------------*/ 1438 1452 /** ブール演算 AND … … 1477 1491 1478 1492 1493 #if 0 1479 1494 #pragma mark - 1495 #endif 1480 1496 /*------------------------------------------------------------------------*/ 1481 1497 /** 数値引数のチェック … … 1767 1783 1768 1784 1785 #if 0 1769 1786 #pragma mark - 1787 #endif 1770 1788 /*------------------------------------------------------------------------*/ 1771 1789 /** オブジェクトの大小比較(r1 < r2) … … 1840 1858 1841 1859 1860 #if 0 1842 1861 #pragma mark - 1862 #endif 1843 1863 /*------------------------------------------------------------------------*/ 1844 1864 /** 正規表現オブジェクト(フレーム)の生成 … … 1882 1902 1883 1903 1904 #if 0 1884 1905 #pragma mark - 1906 #endif 1885 1907 /*------------------------------------------------------------------------*/ 1886 1908 /** 標準出力にオブジェクトをプリント … … 1990 2012 1991 2013 2014 #if 0 1992 2015 #pragma mark - 2016 #endif 1993 2017 /*------------------------------------------------------------------------*/ 1994 2018 /** 文字列オブジェクトをコンパイル … … 2031 2055 2032 2056 2057 #if 0 2033 2058 #pragma mark - 2059 #endif 2034 2060 /*------------------------------------------------------------------------*/ 2035 2061 /** オフセット位置から符号付きの1バイトを取り出す。 -
NEWT0/trunk/src/newt_core/NewtGC.c
r112 r113 48 48 49 49 50 #if 0 50 51 #pragma mark - 52 #endif 51 53 /*------------------------------------------------------------------------*/ 52 54 /** メモリプールのスナップショットを出力する … … 65 67 66 68 69 #if 0 67 70 #pragma mark - 71 #endif 68 72 /*------------------------------------------------------------------------*/ 69 73 /** オブジェクトデータをチェインする … … 181 185 182 186 187 #if 0 183 188 #pragma mark - 189 #endif 184 190 /*------------------------------------------------------------------------*/ 185 191 /** オブジェクトを解放する … … 263 269 264 270 271 #if 0 265 272 #pragma mark - 273 #endif 274 266 275 #if 0 267 276 /*------------------------------------------------------------------------*/ … … 521 530 522 531 532 #if 0 523 533 #pragma mark - 534 #endif 524 535 /*------------------------------------------------------------------------*/ 525 536 /** スクリプトから GC を呼出す(実際には GC を予約するだけ) -
NEWT0/trunk/src/newt_core/NewtIO.c
r68 r113 189 189 190 190 191 #if 0 191 192 #pragma mark - 193 #endif 192 194 /*------------------------------------------------------------------------*/ 193 195 /** printf フォーマットで出力する(不定長) … … 252 254 253 255 256 #if 0 254 257 #pragma mark - 258 #endif 255 259 /*------------------------------------------------------------------------*/ 256 260 /** printf フォーマットで出力する(不定長) … … 286 290 287 291 292 #if 0 288 293 #pragma mark - 294 #endif 289 295 /*------------------------------------------------------------------------*/ 290 296 /** 入力ストリームから文字列を取出す -
NEWT0/trunk/src/newt_core/NewtMem.c
r68 r113 120 120 121 121 122 #if 0 122 123 #pragma mark - 124 #endif 123 125 /*------------------------------------------------------------------------*/ 124 126 /** スタック情報をセットアップ … … 229 231 230 232 233 #if 0 231 234 #pragma mark - 235 #endif 232 236 /*------------------------------------------------------------------------*/ 233 237 /** アラインを計算 -
NEWT0/trunk/src/newt_core/NewtNSOF.c
r68 r113 87 87 88 88 89 #if 0 89 90 #pragma mark - 91 #endif 90 92 /*------------------------------------------------------------------------*/ 91 93 /** オブジェクトが 0〜255 の整数かチェックする … … 168 170 169 171 172 #if 0 170 173 #pragma mark - 174 #endif 171 175 /*------------------------------------------------------------------------*/ 172 176 /** 1byte を NSOF でバッファに書込む … … 280 284 281 285 286 #if 0 282 287 #pragma mark - 288 #endif 283 289 /*------------------------------------------------------------------------*/ 284 290 /** 出現済みデータを NSOF でバッファに書込む … … 801 807 802 808 809 #if 0 803 810 #pragma mark - 811 #endif 804 812 /*------------------------------------------------------------------------*/ 805 813 /** NSOFバッファを読込んでバイナリオブジェクトに変換する -
NEWT0/trunk/src/newt_core/NewtObj.c
r107 r113 54 54 55 55 56 #if 0 56 57 #pragma mark - 58 #endif 57 59 /*------------------------------------------------------------------------*/ 58 60 /** シンボルのハッシュ値を計算 … … 255 257 256 258 259 #if 0 257 260 #pragma mark - 261 #endif 258 262 /*------------------------------------------------------------------------*/ 259 263 /** オブジェクトのオブジェクトタイプの取得 … … 365 369 366 370 371 #if 0 367 372 #pragma mark - 373 #endif 368 374 /*------------------------------------------------------------------------*/ 369 375 /** オブジェクトデータの実データサイズを計算 … … 664 670 665 671 672 #if 0 666 673 #pragma mark - 674 #endif 667 675 /*------------------------------------------------------------------------*/ 668 676 /** オブジェクのデータ部をバッファに取出す … … 687 695 688 696 697 #if 0 689 698 #pragma mark - 699 #endif 690 700 /*------------------------------------------------------------------------*/ 691 701 /** オブジェクトがリテラルかチェックする … … 1151 1161 1152 1162 1163 #if 0 1153 1164 #pragma mark - 1165 #endif 1154 1166 /*------------------------------------------------------------------------*/ 1155 1167 /** バイナリオブジェクトを作成する … … 1810 1822 1811 1823 1824 #if 0 1812 1825 #pragma mark - 1826 #endif 1813 1827 /*------------------------------------------------------------------------*/ 1814 1828 /** エラー番号の例外を発生する … … 1973 1987 1974 1988 1989 #if 0 1975 1990 #pragma mark - 1991 #endif 1976 1992 /*------------------------------------------------------------------------*/ 1977 1993 /** 32bit整数の比較 … … 2127 2143 2128 2144 2145 #if 0 2129 2146 #pragma mark - 2147 #endif 2130 2148 /*------------------------------------------------------------------------*/ 2131 2149 /** 計算可能な引数ならば計算結果のオブジェクトタイプを返す … … 2320 2338 2321 2339 2340 #if 0 2322 2341 #pragma mark - 2342 #endif 2323 2343 /*------------------------------------------------------------------------*/ 2324 2344 /** オブジェクトの長さを取得する … … 2490 2510 2491 2511 2512 #if 0 2492 2513 #pragma mark - 2514 #endif 2493 2515 /*------------------------------------------------------------------------*/ 2494 2516 /** フレームのオブジェクトデータが _proto スロットを持つかチェックする … … 2805 2827 2806 2828 2829 #if 0 2807 2830 #pragma mark - 2831 #endif 2808 2832 /*------------------------------------------------------------------------*/ 2809 2833 /** マップから指定位置のスロットシンボルを取出す … … 2967 2991 2968 2992 2993 #if 0 2969 2994 #pragma mark - 2995 #endif 2970 2996 /*------------------------------------------------------------------------*/ 2971 2997 /** フレームオブジェクトからスロットの位置を探す … … 3520 3546 3521 3547 3548 #if 0 3522 3549 #pragma mark - 3550 #endif 3523 3551 /*------------------------------------------------------------------------*/ 3524 3552 /** 検索された変数の保存場所に値をセットする … … 3667 3695 3668 3696 3697 #if 0 3669 3698 #pragma mark - 3699 #endif 3670 3700 /*------------------------------------------------------------------------*/ 3671 3701 /** ネイティブ関数の関数オブジェクトから関数のポインタを取得する … … 3801 3831 3802 3832 3833 #if 0 3803 3834 #pragma mark - 3835 #endif 3804 3836 /*------------------------------------------------------------------------*/ 3805 3837 /** 文字列の前半部が部分文字列と一致するかチェックする … … 3954 3986 3955 3987 3988 #if 0 3956 3989 #pragma mark - 3990 #endif 3957 3991 /*------------------------------------------------------------------------*/ 3958 3992 /** 文字列オブジェクトの最後に文字列を追加する … … 4014 4048 4015 4049 4050 #if 0 4016 4051 #pragma mark - 4052 #endif 4017 4053 /*------------------------------------------------------------------------*/ 4018 4054 /** 環境変数の取得 -
NEWT0/trunk/src/newt_core/NewtParser.c
r68 r113 62 62 63 63 64 #if 0 64 65 #pragma mark - 66 #endif 65 67 /*------------------------------------------------------------------------*/ 66 68 /** 構文解析する文字列をセットする … … 127 129 128 130 131 #if 0 129 132 #pragma mark - 133 #endif 130 134 /*------------------------------------------------------------------------*/ 131 135 /** 構文解析のための初期化 … … 267 271 268 272 273 #if 0 269 274 #pragma mark - 275 #endif 270 276 /*------------------------------------------------------------------------*/ 271 277 /** 構文木のノードを印字する … … 444 450 445 451 452 #if 0 446 453 #pragma mark - 454 #endif 447 455 /*------------------------------------------------------------------------*/ 448 456 /** 引数0のノードを作成 … … 772 780 773 781 782 #if 0 774 783 #pragma mark - 784 #endif 775 785 //-------------------------------------------------------------------------- 776 786 /** 参照パスオブジェクトの作成 … … 978 988 979 989 990 #if 0 980 991 #pragma mark - 992 #endif 981 993 //-------------------------------------------------------------------------- 982 994 /** エラーメッセージの表示 -
NEWT0/trunk/src/newt_core/NewtPrint.c
r98 r113 59 59 60 60 61 #if 0 61 62 #pragma mark - 63 #endif 62 64 /*------------------------------------------------------------------------*/ 63 65 /** 配列またはフレームのプリント可能な長さを返す … … 103 105 104 106 107 #if 0 105 108 #pragma mark - 106 109 #endif 107 110 /*------------------------------------------------------------------------*/ 108 111 /** シンボル文字列が表示可能か調べる … … 288 291 289 292 293 #if 0 290 294 #pragma mark - 295 #endif 291 296 /*------------------------------------------------------------------------*/ 292 297 /** 出力ファイルにオブジェクト参照を16進数でプリントする -
NEWT0/trunk/src/newt_core/NewtStr.c
r71 r113 25 25 26 26 27 #if 0 27 28 #pragma mark - 29 #endif 28 30 /*------------------------------------------------------------------------*/ 29 31 /** ベース文字列のパラメータを置き換えて新しい文字列を作成する … … 199 201 200 202 203 #if 0 201 204 #pragma mark - 205 #endif 202 206 /*------------------------------------------------------------------------*/ 203 207 /** 整数を文字に変換する … … 240 244 241 245 246 #if 0 242 247 #pragma mark - 248 #endif 243 249 /*------------------------------------------------------------------------*/ 244 250 /** 文字列の長さを取得 -
NEWT0/trunk/src/newt_core/NewtVM.c
r112 r113 41 41 42 42 43 #ifndef _MSC_VER 44 43 #if 0 45 44 #pragma mark - 46 47 45 #endif 48 46 … … 73 71 74 72 75 #ifndef _MSC_VER 76 73 #if 0 77 74 #pragma mark - 78 79 75 #endif 80 76 … … 367 363 368 364 369 #ifndef _MSC_VER 370 365 #if 0 371 366 #pragma mark - 372 373 367 #endif 374 368 … … 604 598 605 599 606 #ifndef _MSC_VER 607 600 #if 0 608 601 #pragma mark - 609 610 602 #endif 611 612 613 603 /*------------------------------------------------------------------------*/ 614 604 /** 関数オブジェクトを現在の実行関数にする … … 652 642 } 653 643 654 #ifndef _MSC_VER 644 645 #if 0 655 646 #pragma mark *** 呼出しスタック 656 657 647 #endif 658 648 /*------------------------------------------------------------------------*/ … … 728 718 729 719 730 731 #ifndef _MSC_VER 720 #if 0 732 721 #pragma mark *** スタック 733 734 722 #endif 735 736 737 723 /*------------------------------------------------------------------------*/ 738 724 /** スタックのポップ … … 875 861 876 862 877 #ifndef _MSC_VER 878 863 #if 0 879 864 #pragma mark *** 例外ハンドラスタック 880 881 865 #endif 882 883 884 866 /*------------------------------------------------------------------------*/ 885 867 /** 例外スタックにプッシュ … … 974 956 975 957 976 #ifndef _MSC_VER 977 958 #if 0 978 959 #pragma mark *** Literals 979 980 960 #endif 981 982 983 961 /*------------------------------------------------------------------------*/ 984 962 /** リテラルを取出す … … 1002 980 1003 981 1004 #ifndef _MSC_VER 1005 982 #if 0 1006 983 #pragma mark *** Iterator 1007 1008 984 #endif 1009 1010 1011 985 /*------------------------------------------------------------------------*/ 1012 986 /** イテレータオブジェクトを作成する … … 1151 1125 1152 1126 1153 #ifndef _MSC_VER 1154 1127 #if 0 1155 1128 #pragma mark - 1156 1157 1129 #endif 1158 1159 1160 1130 /*------------------------------------------------------------------------*/ 1161 1131 /** 引数をスタックから取出して配列にする … … 2012 1982 2013 1983 2014 #ifndef _MSC_VER 2015 1984 #if 0 2016 1985 #pragma mark - 2017 2018 1986 #pragma mark *** Simple instructions 2019 1987 #endif 2020 2021 2022 2023 1988 /*------------------------------------------------------------------------*/ 2024 1989 /** スタックのポップ … … 2134 2099 2135 2100 2136 #ifndef _MSC_VER 2137 2101 #if 0 2138 2102 #pragma mark - 2139 2140 2103 #pragma mark *** Primitive functions 2141 2104 #endif 2142 2143 2144 2145 2105 /*------------------------------------------------------------------------*/ 2146 2106 /** 加算 … … 2589 2549 2590 2550 2591 #ifndef _MSC_VER 2592 2551 #if 0 2593 2552 #pragma mark - 2594 2595 2553 #pragma mark *** Instructions 2596 2554 #endif 2597 2598 2599 2600 2555 /*------------------------------------------------------------------------*/ 2601 2556 /** 命令セットテーブル登録用のダミー … … 3214 3169 3215 3170 3216 #ifndef _MSC_VER 3217 3171 #if 0 3218 3172 #pragma mark *** ダンプ 3219 3220 3173 #endif 3221 3222 3223 3174 /*------------------------------------------------------------------------*/ 3224 3175 /** 出力ファイルに命令コードの名前をダンプ出力 … … 3461 3412 3462 3413 3463 #ifndef _MSC_VER 3464 3414 #if 0 3465 3415 #pragma mark - 3466 3467 3416 #pragma mark *** インタプリタ 3468 3417 #endif 3469 3470 3418 /*------------------------------------------------------------------------*/ 3471 3419 /** VM環境をプッシュする … … 3991 3939 3992 3940 3993 #ifndef _MSC_VER 3994 3941 #if 0 3995 3942 #pragma mark - 3996 3997 3943 #endif 3998 3999 4000 3944 /*------------------------------------------------------------------------*/ 4001 3945 /** ファイルを読込んでスクリプトを実行 -
NEWT0/trunk/src/parser/newt.l
r93 r113 725 725 726 726 727 #if 0 727 728 #pragma mark - 729 #endif 728 730 /*------------------------------------------------------------------------*/ 729 731 /** デバッグ表示 … … 769 771 770 772 773 #if 0 771 774 #pragma mark - 775 #endif 772 776 //-------------------------------------------------------------------------- 773 777 /** 字句解析のための初期化 -
NEWT0/trunk/src/utils/endian_utils.c
r71 r113 24 24 25 25 26 #if 0 26 27 #pragma mark - 28 #endif 27 29 /*------------------------------------------------------------------------*/ 28 30 /** 浮動小数点数のバイトオーダ(エンディアン)を変換する
Note: See TracChangeset
for help on using the changeset viewer.
