ObjFW  Artifact [2de2a275c9]

Artifact 2de2a275c9a6c5927957fc70e924b5abf694e4b167cd3039183d6305714849fc:

  • File src/OFMutableUTF8String.h — part of check-in [1fc87a9ba8] at 2025-03-23 00:02:24 on branch trunk — Prefix OFUTF8StringIvars with an underscore It's already in a private header, so this is just to make it more obvious. (user: js size: 969) [more...]

/*
 * Copyright (c) 2008-2025 Jonathan Schleifer <js@nil.im>
 *
 * All rights reserved.
 *
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License version 3.0 only,
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
 * version 3.0 for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3.0 along with this program. If not, see
 * <https://www.gnu.org/licenses/>.
 */

#import "OFMutableString.h"
#import "OFUTF8String.h"

OF_ASSUME_NONNULL_BEGIN

@interface OFMutableUTF8String: OFMutableString
{
	struct _OFUTF8StringIvars *restrict _s;
	struct _OFUTF8StringIvars _storage;
}
@end

OF_ASSUME_NONNULL_END