[BACK]Return to uuencode.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/uuencode.h between version 1.3.2.6 and 1.4

version 1.3.2.6, 2002/03/08 17:04:44 version 1.4, 2000/12/19 23:17:59
Line 1 
Line 1 
 /*      $OpenBSD$       */  
   
 /*  /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.   * Copyright (c) 1999 Markus Friedl.  All rights reserved.
  *   *
  * Redistribution and use in source and binary forms, with or without   * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions   * modification, are permitted provided that the following conditions
Line 26 
Line 24 
   
 #ifndef UUENCODE_H  #ifndef UUENCODE_H
 #define UUENCODE_H  #define UUENCODE_H
 int      uuencode(u_char *, u_int, char *, size_t);  int     uuencode(u_char *src, u_int srclength, char *target, size_t targsize);
 int      uudecode(const char *, u_char *, size_t);  int     uudecode(const char *src, u_char *target, size_t targsize);
 void     dump_base64(FILE *, u_char *, u_int);  void    dump_base64(FILE *fp, u_char *data, int len);
 #endif  #endif

Legend:
Removed from v.1.3.2.6  
changed lines
  Added in v.1.4