[go: up one dir, main page]

File: print_help.h

package info (click to toggle)
fish 1.23.1-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 6,556 kB
  • ctags: 2,522
  • sloc: ansic: 36,201; sh: 2,818; makefile: 578
file content (15 lines) | stat: -rw-r--r-- 228 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

/** \file print_help.h
	Print help message for the specified command
*/

#ifndef FISH_PRINT_HELP_H
#define FISH_PRINT_HELP_H

/** 
	Print help message for the specified command
*/

void print_help( char *cmd, int fd );

#endif