// Copyright 2021 The Fuchsia Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style license that can be | |
// found in the LICENSE file. | |
library fuchsia.elf.test; | |
const MAX_ENV_VARS int32 = 32; | |
const MAX_VAR_LEN int32 = 132; | |
@discoverable | |
closed protocol Context { | |
/// Returns the environment set for this component. | |
strict GetEnviron() -> (struct { | |
environ vector<string:MAX_VAR_LEN>:MAX_ENV_VARS; | |
}); | |
}; |