Revision 3bb8d69cddbcad4bd4ae3d1281c42c1aeb297355 authored by Junio C Hamano on 21 December 2011, 19:42:44 UTC, committed by Junio C Hamano on 21 December 2011, 19:42:44 UTC
* cn/maint-lf-to-crlf-filter:
  lf_to_crlf_filter(): tell the caller we added "\n" when draining
  convert: track state in LF-to-CRLF filter
2 parent s 1a7bd4f + 87afe9a
Raw File
sigchain.h
#ifndef SIGCHAIN_H
#define SIGCHAIN_H

typedef void (*sigchain_fun)(int);

int sigchain_push(int sig, sigchain_fun f);
int sigchain_pop(int sig);

void sigchain_push_common(sigchain_fun f);

#endif /* SIGCHAIN_H */
back to top