| OLD | NEW |
| 1 /** | 1 /** |
| 2 * \file assocdat.h | 2 * \file assocdat.h |
| 3 * \brief YASM associated data storage (libyasm internal use) | 3 * \brief YASM associated data storage (libyasm internal use) |
| 4 * | 4 * |
| 5 * \rcs | |
| 6 * $Id: assocdat.h 2101 2008-05-23 06:46:51Z peter $ | |
| 7 * \endrcs | |
| 8 * | |
| 9 * \license | 5 * \license |
| 10 * Copyright (C) 2003-2007 Peter Johnson | 6 * Copyright (C) 2003-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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 YASM_LIB_DECL | 67 YASM_LIB_DECL |
| 72 void yasm__assoc_data_destroy | 68 void yasm__assoc_data_destroy |
| 73 (/*@null@*/ /*@only@*/ yasm__assoc_data *assoc_data); | 69 (/*@null@*/ /*@only@*/ yasm__assoc_data *assoc_data); |
| 74 | 70 |
| 75 /** Print all associated data in a container. */ | 71 /** Print all associated data in a container. */ |
| 76 YASM_LIB_DECL | 72 YASM_LIB_DECL |
| 77 void yasm__assoc_data_print(const yasm__assoc_data *assoc_data, FILE *f, | 73 void yasm__assoc_data_print(const yasm__assoc_data *assoc_data, FILE *f, |
| 78 int indent_level); | 74 int indent_level); |
| 79 | 75 |
| 80 #endif | 76 #endif |
| OLD | NEW |