" (C) 2010-2013 by Holger Hans Peter Freyther All Rights Reserved This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . " CCompound subclass: CPackedStruct [ CPackedStruct class >> declaration: array [ "Compile methods that implement the declaration in array." self declaration: array inject: self superclass sizeof into: [:oldOffset :alignment | oldOffset] ] CPackedStruct class >> compileSize: size align: alignment [ ^ super compileSize: size align: 1. ] ] CPackedStruct subclass: IPASCCPState [ srcAddr [ ^ SCCPAddrReference fromCData: self src. ] dstAddr [ ^ SCCPAddrReference fromCData: self dst. ] imsiString [ "We will need to count how many chars of the array are used" 0 to: 16 do: [:index | | c | c := self imsi at: index. c = (Character value: 0) ifTrue: [ ^ String fromCData: self imsi size: index. ]. ]. ^ String fromCData: self imsi. ] ]