utils.h
上传用户:knt0001
上传日期:2022-01-28
资源大小:264k
文件大小:1k
源码类别:

Email客户端

开发平台:

C/C++

  1. /**
  2.     eMail is a command line SMTP client.
  3.     Copyright (C) 2001 - 2008 email by Dean Jones
  4.     Software supplied and written by http://www.cleancode.org
  5.     This file is part of eMail.
  6.     eMail 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.     eMail is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.     You should have received a copy of the GNU General Public License
  15.     along with eMail; if not, write to the Free Software
  16.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17. **/
  18. #ifndef __UTILS_H
  19. #define __UTILS_H   1
  20. #include <sys/types.h>
  21. #include "dstrbuf.h"
  22. typedef enum {
  23. IS_ASCII,
  24. IS_UTF8,
  25. IS_PARTIAL_UTF8,
  26. IS_OTHER
  27. } CharSetType;
  28. dstrbuf *expandPath(const char *path);
  29. int copyfile(const char *from, const char *to);
  30. dstrbuf *randomString(size_t size);
  31. dstrbuf *getFirstEmail(void);
  32. void properExit(int sig);
  33. void chomp(char *str);
  34. int copyUpTo(dstrbuf *buf, int stop, FILE *in);
  35. CharSetType getCharSet(const u_char *str);
  36. dstrbuf *encodeUtf8String(const u_char *str, bool use_qp);
  37. #endif /* __UTILS_H */