| OLD | NEW |
| 1 /** | 1 /** |
| 2 * \file libyasm/section.h | 2 * \file libyasm/section.h |
| 3 * \brief YASM section interface. | 3 * \brief YASM section interface. |
| 4 * | 4 * |
| 5 * \rcs | |
| 6 * $Id: section.h 2109 2008-06-08 09:06:05Z peter $ | |
| 7 * \endrcs | |
| 8 * | |
| 9 * \license | 5 * \license |
| 10 * Copyright (C) 2001-2007 Peter Johnson | 6 * Copyright (C) 2001-2007 Peter Johnson |
| 11 * | 7 * |
| 12 * Redistribution and use in source and binary forms, with or without | 8 * Redistribution and use in source and binary forms, with or without |
| 13 * modification, are permitted provided that the following conditions | 9 * modification, are permitted provided that the following conditions |
| 14 * are met: | 10 * are met: |
| 15 * - Redistributions of source code must retain the above copyright | 11 * - Redistributions of source code must retain the above copyright |
| 16 * notice, this list of conditions and the following disclaimer. | 12 * notice, this list of conditions and the following disclaimer. |
| 17 * - Redistributions in binary form must reproduce the above copyright | 13 * - Redistributions in binary form must reproduce the above copyright |
| 18 * notice, this list of conditions and the following disclaimer in the | 14 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 * \param f file | 374 * \param f file |
| 379 * \param indent_level indentation level | 375 * \param indent_level indentation level |
| 380 * \param sect section | 376 * \param sect section |
| 381 * \param print_bcs if nonzero, print bytecodes within section | 377 * \param print_bcs if nonzero, print bytecodes within section |
| 382 */ | 378 */ |
| 383 YASM_LIB_DECL | 379 YASM_LIB_DECL |
| 384 void yasm_section_print(/*@null@*/ const yasm_section *sect, FILE *f, | 380 void yasm_section_print(/*@null@*/ const yasm_section *sect, FILE *f, |
| 385 int indent_level, int print_bcs); | 381 int indent_level, int print_bcs); |
| 386 | 382 |
| 387 #endif | 383 #endif |
| OLD | NEW |