Parent Directory
|
Revision Log
|
Patch
revision 143 by twoaday, Mon Jan 9 09:15:29 2006 UTC | revision 144 by twoaday, Thu Jan 12 16:28:06 2006 UTC | |
---|---|---|
# | Line 244 gpg_data_readline (gpgme_data_t dh, char | Line 244 gpg_data_readline (gpgme_data_t dh, char |
244 | ||
245 | return pos; | return pos; |
246 | } | } |
247 | ||
248 | ||
249 | /* Write a single byte to data object @hd. */ | |
250 | void | |
251 | gpg_data_putc (gpgme_data_t hd, int c) | |
252 | { | |
253 | BYTE ch[1]; | |
254 | ||
255 | ch[0] = (BYTE)c; | |
256 | ch[1] = '\0'; | |
257 | gpgme_data_write (hd, ch, 1); | |
258 | } |
|
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |