| OLD | NEW |
| 1 /** | 1 /** |
| 2 * \file libyasm/linemap.h | 2 * \file libyasm/linemap.h |
| 3 * \brief YASM virtual line mapping interface. | 3 * \brief YASM virtual line mapping interface. |
| 4 * | 4 * |
| 5 * \rcs | |
| 6 * $Id: linemap.h 2259 2010-01-03 01:58:23Z peter $ | |
| 7 * \endrcs | |
| 8 * | |
| 9 * \license | 5 * \license |
| 10 * Copyright (C) 2002-2007 Peter Johnson | 6 * Copyright (C) 2002-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 * 1. Redistributions of source code must retain the above copyright | 11 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 13 * 2. 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 * \param func function | 132 * \param func function |
| 137 * \return Stops early (and returns func's return value) if func returns a | 133 * \return Stops early (and returns func's return value) if func returns a |
| 138 * nonzero value; otherwise 0. | 134 * nonzero value; otherwise 0. |
| 139 */ | 135 */ |
| 140 YASM_LIB_DECL | 136 YASM_LIB_DECL |
| 141 int yasm_linemap_traverse_filenames | 137 int yasm_linemap_traverse_filenames |
| 142 (yasm_linemap *linemap, /*@null@*/ void *d, | 138 (yasm_linemap *linemap, /*@null@*/ void *d, |
| 143 int (*func) (const char *filename, void *d)); | 139 int (*func) (const char *filename, void *d)); |
| 144 | 140 |
| 145 #endif | 141 #endif |
| OLD | NEW |