~ubuntu-branches/ubuntu/hardy/renameutils/hardy

« back to all changes in this revision

Viewing changes to src/common/tab-utils.h

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2006-07-21 16:39:15 UTC
  • mfrom: (1.1.4 edgy)
  • Revision ID: james.westby@ubuntu.com-20060721163915-k3kqs080hol8uw1n
Tags: 0.8.1-4
* Enable large file support on 32-bit platforms (closes: #377845)
* Bump Standards-Version up to 3.7.2 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* tab-utils.h - Utility functions dealing with strings and tabs.
2
2
 *
3
 
 * Copyright (C) 2001  Oskar Liljeblad
4
 
 *
5
 
 * This file is part of the file renaming utilities (renameutils)
6
 
 * and regex-markup.
7
 
 *
8
 
 * This software is copyrighted work licensed under the terms of the
9
 
 * GNU General Public License. Please consult the file `COPYING' for
10
 
 * details.
 
3
 * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 
4
 * Oskar Liljeblad
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
11
19
 */
12
20
 
13
 
#ifndef __TAB_UTILS_H__
14
 
#define __TAB_UTILS_H__
 
21
#ifndef COMMON_TAB_UTILS_H
 
22
#define COMMON_TAB_UTILS_H
15
23
 
16
 
#include <stdio.h>
 
24
#include <stdio.h>      /* C89 */
17
25
 
18
26
void tab_to(FILE *out, int from, int to, int tabsize);
19
27
size_t tab_len(const char *string, int tabsize);