8b20f17f49
X-SVN-Rev: 473
29 lines
725 B
C
29 lines
725 B
C
/*
|
|
*******************************************************************************
|
|
*
|
|
* Copyright (C) 1998-1999, International Business Machines
|
|
* Corporation and others. All Rights Reserved.
|
|
*
|
|
*******************************************************************************
|
|
*
|
|
* File write.h
|
|
*
|
|
* Modification History:
|
|
*
|
|
* Date Name Description
|
|
* 06/01/99 stephen Creation.
|
|
*******************************************************************************
|
|
*/
|
|
|
|
#ifndef WRITE_H
|
|
#define WRITE_H 1
|
|
|
|
#include "unicode/utypes.h"
|
|
#include "rblist.h"
|
|
#include "filestrm.h"
|
|
|
|
/* Write a resource bundle item list to a file */
|
|
void rb_write(FileStream *f, struct SRBItemList *data, UErrorCode *status);
|
|
|
|
#endif
|