| SYNOPSIS | 
#include <dkim.h>
const char * dkim_getresultstr(
	DKIM_STAT result
);
 
Retrieve a text conversion for a DKIM_STAT result code.
 | 
| DESCRIPTION | 
| Called When | 
dkim_getresultstr() can be called at any time after a function
    that returns a DKIM_STAT result code.  | 
 
 
 | 
|---|
| ARGUMENTS | 
    
    | Argument | Description |  
    | result | 
	A DKIM_STAT result code to be translated.
	 |  
     
 | 
| RETURN VALUES | 
    
    | Value | Description |  
    | NULL | 
	The value of result was not recognized.
	 |  
    | otherwise | 
	A pointer to a NULL-terminated string containing a text
	translation of result.
	 |  
     
 | 
| NOTES |  
 |