mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-07 18:21:16 -03:00
Add header guards to the header files.
darcs-hash:20051004151139-35ec8-7af69b9d7647d145dc621f7eaea726e729cff554.gz
This commit is contained in:
9
common.h
9
common.h
@@ -2,6 +2,13 @@
|
||||
Prototypes for various functions, mostly string utilities, that are used by most parts of fish.
|
||||
*/
|
||||
|
||||
#ifndef FISH_COMMON_H
|
||||
#define FISH_COMMON_H
|
||||
|
||||
#include <wchar.h>
|
||||
#include <termios.h>
|
||||
|
||||
#include "util.h"
|
||||
|
||||
/**
|
||||
Under curses, tputs expects an int (*func)(char) as its last parameter, but in ncurses, tputs expects a int (*func)(int) as its last parameter. tputs_arg_t is defined to always be what tputs expects. Hopefully.
|
||||
@@ -247,4 +254,6 @@ wchar_t *unescape( wchar_t * in, int escape_special );
|
||||
void block();
|
||||
void unblock();
|
||||
|
||||
#endif
|
||||
|
||||
int acquire_lock_file( const char *lockfile, const int timeout, int force );
|
||||
|
||||
Reference in New Issue
Block a user