diff options
-rw-r--r-- | replace.c | 2 | ||||
-rw-r--r-- | replace.h | 4 |
2 files changed, 2 insertions, 4 deletions
@@ -68,11 +68,9 @@ replaceinfile(char *originalfile, char *destinationfile, char *placeholder, char i += strlen(placeholder); substr++; substr = strstr(substr, placeholder); - //printf("%s", replacement); fprintf(destination, "%s", replacement); } ch = filebuffer[i]; - //putchar(ch); fputc(ch, destination); } fclose(template); @@ -3,12 +3,12 @@ * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ |