mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-31 10:30:33 +03:00 
			
		
		
		
	Here is a tar file the new directories, which substitute the old ones in contrib. Please remove the old directories array, datetime, miscutil, string and userlock before unpacking the tar file in contrib. Note that as the modules are now installed in lib/modules I install all my sql code in lib/sql. In my opinion also the other contributors should follow these rules.
		
			
				
	
	
		
			28 lines
		
	
	
		
			575 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			575 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef STRING_IO_H
 | |
| #define STRING_IO_H
 | |
| 
 | |
| char	   *string_output(char *data, int size);
 | |
| char	   *string_input(char *str, int size, int hdrsize, int *rtn_size);
 | |
| char	   *c_charout(int32 c);
 | |
| char	   *c_char2out(uint16 s);
 | |
| char	   *c_char4out(uint32 s);
 | |
| char	   *c_char8out(char *s);
 | |
| char	   *c_char16out(char *s);
 | |
| char	   *c_textout(struct varlena * vlena);
 | |
| char	   *c_varcharout(char *s);
 | |
| 
 | |
| #if 0
 | |
| struct varlena *c_textin(char *str);
 | |
| char	   *c_char16in(char *str);
 | |
| #endif
 | |
| 
 | |
| #endif
 | |
| 
 | |
| /*
 | |
|  * Local variables:
 | |
|  *  tab-width: 4
 | |
|  *  c-indent-level: 4
 | |
|  *  c-basic-offset: 4
 | |
|  * End:
 | |
|  */
 |