File: strary.h

package info (click to toggle)
shell-fm 0.7%2Bgit20100414-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 444 kB
  • ctags: 305
  • sloc: ansic: 4,422; makefile: 135; python: 80; haskell: 76; sh: 67; perl: 19
file content (18 lines) | stat: -rw-r--r-- 342 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
	vim:syntax=c tabstop=2 shiftwidth=2 noexpandtab
*/

#ifndef SHELLFM_STRARRAY
#define SHELLFM_STRARRAY

#include <string.h>
#include <stdlib.h>

extern unsigned count(char **);
extern char ** append(char **, const char *);
extern char ** merge(char **, char **, int);
extern void purge(char **);
extern char * join(char **, int);

#endif